| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- project "example-00-helloworld"
- uuid "ff2c8450-ebf4-11e0-9572-0800200c9a66"
- kind "WindowedApp"
- includedirs {
- BX_DIR .. "include",
- BGFX_DIR .. "include",
- }
- files {
- BGFX_DIR .. "examples/common/**.cpp",
- BGFX_DIR .. "examples/common/**.h",
- BGFX_DIR .. "examples/00-helloworld/**.cpp",
- BGFX_DIR .. "examples/00-helloworld/**.h",
- }
- links {
- "bgfx",
- }
- configuration { "emscripten" }
- targetextension ".bc"
- configuration { "nacl or nacl-arm or pnacl" }
- targetextension ".nexe"
- links {
- "ppapi",
- "ppapi_gles2",
- "pthread",
- }
- configuration { "nacl", "Release" }
- postbuildcommands {
- "@echo Stripping symbols.",
- "@$(NACL)/bin/x86_64-nacl-strip -s \"$(TARGET)\""
- }
- configuration { "linux" }
- links {
- "GL",
- "pthread",
- }
- configuration { "macosx" }
- files {
- BGFX_DIR .. "examples/common/**.mm",
- }
- links {
- "Cocoa.framework",
- "OpenGL.framework",
- }
|