| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- project "example-04-mesh"
- uuid "546bbc76-0c4a-11e2-ab09-debcdd6a022f"
- kind "WindowedApp"
- debugdir (BGFX_DIR .. "examples/runtime/")
- includedirs {
- BX_DIR .. "include",
- BGFX_DIR .. "include",
- }
- files {
- BGFX_DIR .. "examples/common/**.cpp",
- BGFX_DIR .. "examples/common/**.h",
- BGFX_DIR .. "examples/04-mesh/**.cpp",
- BGFX_DIR .. "examples/04-mesh/**.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",
- }
|