mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
53 lines
994 B
Lua
Executable file
53 lines
994 B
Lua
Executable file
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",
|
|
}
|