mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
44 lines
838 B
Lua
44 lines
838 B
Lua
|
project "example-05-instancing"
|
||
|
uuid "5d3da660-1105-11e2-aece-71e4dd6a022f"
|
||
|
kind "WindowedApp"
|
||
|
|
||
|
debugdir (BGFX_DIR .. "examples/runtime/")
|
||
|
|
||
|
defines {
|
||
|
"OPENCTM_STATIC",
|
||
|
"OPENCTM_NO_CPP",
|
||
|
}
|
||
|
|
||
|
includedirs {
|
||
|
BGFX_DIR .. "../bx/include",
|
||
|
BGFX_DIR .. "include",
|
||
|
BGFX_DIR .. "3rdparty/openctm/lib",
|
||
|
}
|
||
|
|
||
|
files {
|
||
|
BGFX_DIR .. "examples/common/**.cpp",
|
||
|
BGFX_DIR .. "examples/common/**.h",
|
||
|
BGFX_DIR .. "examples/05-instancing/**.cpp",
|
||
|
BGFX_DIR .. "examples/05-instancing/**.h",
|
||
|
}
|
||
|
|
||
|
links {
|
||
|
"bgfx",
|
||
|
"openctm",
|
||
|
}
|
||
|
|
||
|
configuration { "nacl" }
|
||
|
targetextension ".nexe"
|
||
|
|
||
|
configuration { "nacl", "Release" }
|
||
|
postbuildcommands {
|
||
|
"@echo Stripping symbols.",
|
||
|
"@$(NACL)/bin/x86_64-nacl-strip -s \"$(TARGET)\""
|
||
|
}
|
||
|
|
||
|
configuration { "linux" }
|
||
|
links {
|
||
|
"GL",
|
||
|
"pthread",
|
||
|
}
|