mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
53 lines
1,000 B
Lua
Executable file
53 lines
1,000 B
Lua
Executable file
project "example-08-update"
|
|
uuid "e011e246-5862-11e2-b202-b7cb257a7926"
|
|
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/08-update/**.cpp",
|
|
BGFX_DIR .. "examples/08-update/**.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",
|
|
}
|