bgfx/premake/example-05-instancing.lua
Garett Bass 2bbcb92109 Added OSX entry point and OpenGL context
Added OSX entry point and OpenGL context
2013-01-15 20:37:07 -08:00

46 lines
911 B
Lua
Executable file

project "example-05-instancing"
uuid "5d3da660-1105-11e2-aece-71e4dd6a022f"
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/05-instancing/**.cpp",
BGFX_DIR .. "examples/05-instancing/**.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",
}
configuration { "macosx" }
links {
"Cocoa.framework",
"OpenGL.framework",
}