bgfx/premake/example-04-mesh.lua

47 lines
893 B
Lua
Raw Normal View History

2012-10-07 23:41:18 -04:00
project "example-04-mesh"
uuid "546bbc76-0c4a-11e2-ab09-debcdd6a022f"
kind "WindowedApp"
debugdir (BGFX_DIR .. "examples/runtime/")
includedirs {
BX_DIR .. "include",
2012-10-07 23:41:18 -04:00
BGFX_DIR .. "include",
}
files {
BGFX_DIR .. "examples/common/**.cpp",
BGFX_DIR .. "examples/common/**.h",
BGFX_DIR .. "examples/common/**.mm",
2012-10-07 23:41:18 -04:00
BGFX_DIR .. "examples/04-mesh/**.cpp",
BGFX_DIR .. "examples/04-mesh/**.h",
}
links {
"bgfx",
}
2012-10-22 01:09:14 -04:00
configuration { "emscripten" }
targetextension ".bc"
2012-10-07 23:41:18 -04:00
configuration { "nacl" }
targetextension ".nexe"
configuration { "nacl", "Release" }
postbuildcommands {
"@echo Stripping symbols.",
"@$(NACL)/bin/x86_64-nacl-strip -s \"$(TARGET)\""
}
configuration { "linux" }
links {
"GL",
"pthread",
}
configuration { "macosx" }
links {
"Cocoa.framework",
"OpenGL.framework",
}