mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
37 lines
738 B
Lua
37 lines
738 B
Lua
project "example-00-helloworld"
|
|
uuid "ff2c8450-ebf4-11e0-9572-0800200c9a66"
|
|
kind "WindowedApp"
|
|
|
|
includedirs {
|
|
BGFX_DIR .. "../bx/include",
|
|
BGFX_DIR .. "include",
|
|
}
|
|
|
|
files {
|
|
BGFX_DIR .. "examples/common/**.cpp",
|
|
BGFX_DIR .. "examples/common/**.h",
|
|
BGFX_DIR .. "examples/00-helloworld/**.cpp",
|
|
BGFX_DIR .. "examples/00-helloworld/**.h",
|
|
}
|
|
|
|
links {
|
|
"bgfx",
|
|
}
|
|
|
|
configuration { "emscripten" }
|
|
targetextension ".bc"
|
|
|
|
configuration { "nacl" }
|
|
targetextension ".nexe"
|
|
|
|
configuration { "nacl", "Release" }
|
|
postbuildcommands {
|
|
"@echo Stripping symbols.",
|
|
"@$(NACL)/bin/x86_64-nacl-strip -s \"$(TARGET)\""
|
|
}
|
|
|
|
configuration { "linux" }
|
|
links {
|
|
"GL",
|
|
"pthread",
|
|
}
|