| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- --
- -- Copyright 2010-2014 Branimir Karadzic. All rights reserved.
- -- License: http://www.opensource.org/licenses/BSD-2-Clause
- --
- function bgfxProject(_name, _kind, _defines)
- project ("bgfx" .. _name)
- uuid (os.uuid("bgfx" .. _name))
- kind (_kind)
- if _kind == "SharedLib" then
- defines {
- "BGFX_SHARED_LIB_BUILD=1",
- }
- end
- includedirs {
- BGFX_DIR .. "3rdparty",
- BGFX_DIR .. "../bx/include",
- }
- defines {
- _defines,
- }
- configuration { "Debug" }
- defines {
- "BGFX_CONFIG_DEBUG=1",
- }
- configuration { "android*" }
- links {
- "EGL",
- "GLESv2",
- }
- configuration { "windows", "not vs201*" }
- includedirs {
- "$(DXSDK_DIR)/include",
- }
- configuration { "windows" }
- links {
- "gdi32",
- "psapi",
- }
- configuration { "xcode4 or osx or ios*" }
- files {
- BGFX_DIR .. "src/**.mm",
- }
- configuration { "osx" }
- links {
- "Cocoa.framework",
- }
- configuration { "vs* or linux or mingw or xcode4 or osx or ios* or rpi" }
- includedirs {
- --nacl has GLES2 headers modified...
- BGFX_DIR .. "3rdparty/khronos",
- }
- configuration { "x64", "vs* or mingw" }
- defines {
- "_WIN32_WINNT=0x601",
- }
- configuration {}
- includedirs {
- BGFX_DIR .. "include",
- }
- files {
- BGFX_DIR .. "include/**.h",
- BGFX_DIR .. "src/**.cpp",
- BGFX_DIR .. "src/**.h",
- }
- excludes {
- BGFX_DIR .. "src/**.bin.h",
- }
- configuration {}
- copyLib()
- end
|