bgfx/scripts/bgfx.lua

168 lines
3.9 KiB
Lua
Raw Normal View History

2013-05-17 22:39:08 -04:00
--
2016-01-01 03:11:04 -05:00
-- Copyright 2010-2016 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2013-05-17 22:39:08 -04:00
--
2014-09-11 02:01:22 -04:00
function bgfxProject(_name, _kind, _defines)
2013-02-22 00:13:56 -05:00
2014-08-01 01:00:36 -04:00
project ("bgfx" .. _name)
2014-09-11 02:01:22 -04:00
uuid (os.uuid("bgfx" .. _name))
2014-08-01 01:00:36 -04:00
kind (_kind)
2013-02-22 00:13:56 -05:00
2014-08-01 01:00:36 -04:00
if _kind == "SharedLib" then
defines {
"BGFX_SHARED_LIB_BUILD=1",
}
2014-12-25 17:51:11 -05:00
2015-02-12 01:19:49 -05:00
configuration { "vs20* or mingw*" }
links {
"gdi32",
"psapi",
}
configuration { "mingw*" }
linkoptions {
"-shared",
}
2014-12-25 17:51:11 -05:00
configuration { "linux-*" }
2015-03-25 02:21:32 -04:00
buildoptions {
"-fPIC",
}
2014-12-25 17:51:11 -05:00
configuration {}
2014-08-01 01:00:36 -04:00
end
2013-02-22 00:13:56 -05:00
includedirs {
path.join(BGFX_DIR, "3rdparty"),
2015-08-19 21:33:56 -04:00
path.join(BGFX_DIR, "3rdparty/dxsdk/include"),
2016-01-19 23:04:25 -05:00
path.join(BX_DIR, "include"),
2013-02-22 00:13:56 -05:00
}
2014-08-01 01:00:36 -04:00
defines {
2014-09-03 03:29:54 -04:00
_defines,
2013-02-22 00:13:56 -05:00
}
2015-03-25 02:21:32 -04:00
if _OPTIONS["with-glfw"] then
defines {
"BGFX_CONFIG_MULTITHREADED=0",
}
end
2014-10-20 00:29:27 -04:00
if _OPTIONS["with-ovr"] then
defines {
"BGFX_CONFIG_USE_OVR=1",
}
includedirs {
"$(OVR_DIR)/LibOVR/Include",
}
end
2014-08-01 01:00:36 -04:00
configuration { "Debug" }
defines {
"BGFX_CONFIG_DEBUG=1",
}
2013-02-22 00:13:56 -05:00
2014-08-01 01:00:36 -04:00
configuration { "android*" }
links {
"EGL",
"GLESv2",
}
2013-02-22 00:13:56 -05:00
2015-09-22 18:19:39 -04:00
configuration { "winphone8* or winstore8*" }
linkoptions {
"/ignore:4264" -- LNK4264: archiving object file compiled with /ZW into a static library; note that when authoring Windows Runtime types it is not recommended to link with a static library that contains Windows Runtime metadata
}
2015-09-22 18:19:39 -04:00
configuration { "*clang*" }
buildoptions {
"-Wno-microsoft-enum-value", -- enumerator value is not representable in the underlying type 'int'
"-Wno-microsoft-const-init", -- default initialization of an object of const type '' without a user-provided default constructor is a Microsoft extension
}
2014-08-01 01:00:36 -04:00
configuration { "osx" }
2015-10-21 00:15:28 -04:00
linkoptions {
"-framework Cocoa",
"-framework QuartzCore",
"-framework OpenGL",
"-weak_framework Metal",
2014-08-01 01:00:36 -04:00
}
2014-06-01 18:26:36 -04:00
2014-10-18 00:03:14 -04:00
configuration { "not nacl" }
2014-08-01 01:00:36 -04:00
includedirs {
--nacl has GLES2 headers modified...
path.join(BGFX_DIR, "3rdparty/khronos"),
2014-08-01 01:00:36 -04:00
}
2014-06-01 18:26:36 -04:00
2014-08-01 01:00:36 -04:00
configuration {}
2014-06-01 18:26:36 -04:00
includedirs {
path.join(BGFX_DIR, "include"),
2014-06-01 18:26:36 -04:00
}
files {
path.join(BGFX_DIR, "include/**.h"),
path.join(BGFX_DIR, "src/**.cpp"),
path.join(BGFX_DIR, "src/**.h"),
2014-07-07 22:53:00 -04:00
}
removefiles {
path.join(BGFX_DIR, "src/**.bin.h"),
2014-06-01 18:26:36 -04:00
}
if _OPTIONS["with-amalgamated"] then
excludes {
path.join(BGFX_DIR, "src/bgfx.cpp"),
path.join(BGFX_DIR, "src/glcontext_egl.cpp"),
path.join(BGFX_DIR, "src/glcontext_glx.cpp"),
path.join(BGFX_DIR, "src/glcontext_ppapi.cpp"),
path.join(BGFX_DIR, "src/glcontext_wgl.cpp"),
path.join(BGFX_DIR, "src/image.cpp"),
path.join(BGFX_DIR, "src/ovr.cpp"),
path.join(BGFX_DIR, "src/renderdoc.cpp"),
path.join(BGFX_DIR, "src/renderer_d3d9.cpp"),
path.join(BGFX_DIR, "src/renderer_d3d11.cpp"),
path.join(BGFX_DIR, "src/renderer_d3d12.cpp"),
path.join(BGFX_DIR, "src/renderer_null.cpp"),
path.join(BGFX_DIR, "src/renderer_gl.cpp"),
path.join(BGFX_DIR, "src/renderer_vk.cpp"),
2015-07-30 14:33:28 -04:00
path.join(BGFX_DIR, "src/shader_dx9bc.cpp"),
path.join(BGFX_DIR, "src/shader_dxbc.cpp"),
path.join(BGFX_DIR, "src/shader_spirv.cpp"),
path.join(BGFX_DIR, "src/vertexdecl.cpp"),
}
2015-06-19 20:34:01 -04:00
configuration { "xcode* or osx or ios*" }
2015-06-20 03:22:36 -04:00
files {
path.join(BGFX_DIR, "src/amalgamated.mm"),
}
2015-06-19 20:34:01 -04:00
excludes {
path.join(BGFX_DIR, "src/glcontext_eagl.mm"),
path.join(BGFX_DIR, "src/glcontext_nsgl.mm"),
path.join(BGFX_DIR, "src/renderer_mtl.mm"),
path.join(BGFX_DIR, "src/amalgamated.cpp"),
}
2015-06-19 22:55:23 -04:00
configuration {}
else
configuration { "xcode* or osx or ios*" }
2015-06-19 20:34:01 -04:00
files {
path.join(BGFX_DIR, "src/glcontext_eagl.mm"),
path.join(BGFX_DIR, "src/glcontext_nsgl.mm"),
path.join(BGFX_DIR, "src/renderer_mtl.mm"),
}
2015-06-19 22:55:23 -04:00
configuration {}
excludes {
2015-06-19 22:55:23 -04:00
path.join(BGFX_DIR, "src/amalgamated.**"),
}
end
2014-08-01 01:00:36 -04:00
configuration {}
2014-06-01 18:26:36 -04:00
2014-08-01 01:00:36 -04:00
copyLib()
end