bgfx/premake/example-00-helloworld.lua

38 lines
730 B
Lua
Raw Normal View History

2012-09-16 20:36:08 -04:00
project "example-00-helloworld"
2012-06-01 22:55:56 -04:00
uuid "ff2c8450-ebf4-11e0-9572-0800200c9a66"
kind "WindowedApp"
includedirs {
BX_DIR .. "include",
2012-06-01 22:55:56 -04:00
BGFX_DIR .. "include",
}
files {
BGFX_DIR .. "examples/common/**.cpp",
BGFX_DIR .. "examples/common/**.h",
2012-09-16 20:36:08 -04:00
BGFX_DIR .. "examples/00-helloworld/**.cpp",
BGFX_DIR .. "examples/00-helloworld/**.h",
2012-06-01 22:55:56 -04:00
}
links {
"bgfx",
}
2012-10-22 01:09:14 -04:00
configuration { "emscripten" }
targetextension ".bc"
2012-06-01 22:55:56 -04:00
configuration { "nacl" }
targetextension ".nexe"
configuration { "nacl", "Release" }
postbuildcommands {
"@echo Stripping symbols.",
"@$(NACL)/bin/x86_64-nacl-strip -s \"$(TARGET)\""
}
2012-06-02 15:44:37 -04:00
configuration { "linux" }
links {
"GL",
"pthread",
}