2013-05-17 22:39:08 -04:00
|
|
|
--
|
2014-02-11 01:07:04 -05:00
|
|
|
-- Copyright 2010-2014 Branimir Karadzic. All rights reserved.
|
2013-05-17 22:39:08 -04:00
|
|
|
-- License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
--
|
|
|
|
|
2013-02-22 00:13:56 -05:00
|
|
|
project "bgfx"
|
|
|
|
uuid "2dc7fd80-ed76-11e0-be50-0800200c9a66"
|
|
|
|
kind "StaticLib"
|
|
|
|
|
|
|
|
includedirs {
|
|
|
|
BGFX_DIR .. "../bx/include",
|
|
|
|
}
|
|
|
|
|
|
|
|
defines {
|
|
|
|
-- "BGFX_CONFIG_RENDERER_OPENGL=1",
|
|
|
|
}
|
|
|
|
|
2013-10-11 23:38:47 -04:00
|
|
|
configuration { "Debug" }
|
2013-02-22 00:13:56 -05:00
|
|
|
defines {
|
|
|
|
"BGFX_CONFIG_DEBUG=1",
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration { "windows" }
|
|
|
|
includedirs {
|
|
|
|
"$(DXSDK_DIR)/include",
|
|
|
|
}
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
configuration { "osx or ios*" }
|
2013-02-22 00:13:56 -05:00
|
|
|
files {
|
|
|
|
BGFX_DIR .. "src/**.mm",
|
|
|
|
}
|
|
|
|
|
2013-07-21 17:44:53 -04:00
|
|
|
configuration { "vs* or linux or mingw or osx or ios*" }
|
2013-02-22 00:13:56 -05:00
|
|
|
includedirs {
|
|
|
|
--nacl has GLES2 headers modified...
|
2014-03-29 17:53:19 -04:00
|
|
|
BGFX_DIR .. "3rdparty/khronos",
|
2013-02-22 00:13:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
configuration {}
|
|
|
|
|
|
|
|
includedirs {
|
|
|
|
BGFX_DIR .. "include",
|
|
|
|
}
|
|
|
|
|
|
|
|
files {
|
|
|
|
BGFX_DIR .. "include/**.h",
|
|
|
|
BGFX_DIR .. "src/**.cpp",
|
|
|
|
BGFX_DIR .. "src/**.h",
|
|
|
|
}
|
|
|
|
|
|
|
|
excludes {
|
|
|
|
BGFX_DIR .. "src/**.bin.h",
|
|
|
|
}
|
|
|
|
|
|
|
|
copyLib()
|
2014-06-01 18:26:36 -04:00
|
|
|
|
|
|
|
project "bgfx-shared-lib"
|
|
|
|
uuid "09986168-e9d9-11e3-9c8e-f2aef940a72a"
|
|
|
|
kind "SharedLib"
|
|
|
|
|
|
|
|
includedirs {
|
|
|
|
BGFX_DIR .. "../bx/include",
|
|
|
|
}
|
|
|
|
|
|
|
|
defines {
|
|
|
|
"BGFX_SHARED_LIB_BUILD=1",
|
|
|
|
-- "BGFX_CONFIG_RENDERER_OPENGL=1",
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration { "Debug" }
|
|
|
|
defines {
|
|
|
|
"BGFX_CONFIG_DEBUG=1",
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration { "windows" }
|
|
|
|
includedirs {
|
|
|
|
"$(DXSDK_DIR)/include",
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration { "osx or ios*" }
|
|
|
|
files {
|
|
|
|
BGFX_DIR .. "src/**.mm",
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration { "vs* or linux or mingw or osx or ios*" }
|
|
|
|
includedirs {
|
|
|
|
--nacl has GLES2 headers modified...
|
|
|
|
BGFX_DIR .. "3rdparty/khronos",
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration {}
|
|
|
|
|
|
|
|
includedirs {
|
|
|
|
BGFX_DIR .. "include",
|
|
|
|
}
|
|
|
|
|
|
|
|
files {
|
|
|
|
BGFX_DIR .. "include/**.h",
|
|
|
|
BGFX_DIR .. "src/**.cpp",
|
|
|
|
BGFX_DIR .. "src/**.h",
|
|
|
|
}
|
|
|
|
|
|
|
|
excludes {
|
|
|
|
BGFX_DIR .. "src/**.bin.h",
|
|
|
|
}
|
|
|
|
|
|
|
|
copyLib()
|