mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
2bbcb92109
Added OSX entry point and OpenGL context
43 lines
833 B
Lua
Executable file
43 lines
833 B
Lua
Executable file
project "example-06-bump"
|
|
uuid "ffb23e6c-167b-11e2-81df-94c4dd6a022f"
|
|
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/common/**.mm",
|
|
BGFX_DIR .. "examples/06-bump/**.cpp",
|
|
BGFX_DIR .. "examples/06-bump/**.h",
|
|
}
|
|
|
|
links {
|
|
"bgfx",
|
|
}
|
|
|
|
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",
|
|
}
|