2013-05-18 06:39:08 +04:00
--
2015-01-03 01:43:11 +03:00
-- Copyright 2010-2015 Branimir Karadzic. All rights reserved.
2013-05-18 06:39:08 +04:00
-- License: http://www.opensource.org/licenses/BSD-2-Clause
--
2014-09-11 10:01:22 +04:00
function bgfxProject ( _name , _kind , _defines )
2013-02-22 09:13:56 +04:00
2014-08-01 09:00:36 +04:00
project ( " bgfx " .. _name )
2014-09-11 10:01:22 +04:00
uuid ( os.uuid ( " bgfx " .. _name ) )
2014-08-01 09:00:36 +04:00
kind ( _kind )
2013-02-22 09:13:56 +04:00
2014-08-01 09:00:36 +04:00
if _kind == " SharedLib " then
defines {
" BGFX_SHARED_LIB_BUILD=1 " ,
}
2014-12-26 01:51:11 +03:00
2015-02-12 09:19:49 +03:00
configuration { " vs20* or mingw* " }
links {
" gdi32 " ,
" psapi " ,
}
2014-12-24 13:46:49 +03:00
configuration { " mingw* " }
linkoptions {
" -shared " ,
}
2014-12-26 01:51:11 +03:00
configuration { }
2014-08-01 09:00:36 +04:00
end
2013-02-22 09:13:56 +04:00
includedirs {
2014-09-26 09:41:53 +04:00
BGFX_DIR .. " 3rdparty " ,
2014-08-01 09:00:36 +04:00
BGFX_DIR .. " ../bx/include " ,
2013-02-22 09:13:56 +04:00
}
2014-08-01 09:00:36 +04:00
defines {
2014-09-03 11:29:54 +04:00
_defines ,
2013-02-22 09:13:56 +04:00
}
2014-10-20 08:29:27 +04:00
if _OPTIONS [ " with-ovr " ] then
defines {
" BGFX_CONFIG_USE_OVR=1 " ,
}
includedirs {
" $(OVR_DIR)/LibOVR/Include " ,
}
end
2014-08-01 09:00:36 +04:00
configuration { " Debug " }
defines {
" BGFX_CONFIG_DEBUG=1 " ,
}
2013-02-22 09:13:56 +04:00
2014-08-01 09:00:36 +04:00
configuration { " android* " }
links {
" EGL " ,
" GLESv2 " ,
}
2013-02-22 09:13:56 +04:00
2014-10-22 10:31:35 +04:00
configuration { " mingw* or vs2008 " }
2014-08-01 09:00:36 +04:00
includedirs {
" $(DXSDK_DIR)/include " ,
}
2014-08-28 08:04:15 +04:00
2014-11-10 02:24:22 +03:00
configuration { " winphone8* " }
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
}
2014-08-23 15:24:39 +04:00
configuration { " xcode4 or osx or ios* " }
2014-08-01 09:00:36 +04:00
files {
BGFX_DIR .. " src/**.mm " ,
}
2014-06-02 02:26:36 +04:00
2014-08-01 09:00:36 +04:00
configuration { " osx " }
links {
" Cocoa.framework " ,
}
2014-06-02 02:26:36 +04:00
2014-10-18 08:03:14 +04:00
configuration { " not nacl " }
2014-08-01 09:00:36 +04:00
includedirs {
--nacl has GLES2 headers modified...
BGFX_DIR .. " 3rdparty/khronos " ,
}
2014-06-02 02:26:36 +04:00
2014-10-19 02:44:45 +04:00
configuration { " x64 " , " vs* or mingw* " }
2014-09-18 17:32:42 +04:00
defines {
" _WIN32_WINNT=0x601 " ,
}
2014-08-01 09:00:36 +04:00
configuration { }
2014-06-02 02:26:36 +04:00
includedirs {
2014-08-01 09:00:36 +04:00
BGFX_DIR .. " include " ,
2014-06-02 02:26:36 +04:00
}
files {
2014-08-01 09:00:36 +04:00
BGFX_DIR .. " include/**.h " ,
BGFX_DIR .. " src/**.cpp " ,
BGFX_DIR .. " src/**.h " ,
2014-07-08 06:53:00 +04:00
}
2014-08-01 09:00:36 +04:00
excludes {
BGFX_DIR .. " src/**.bin.h " ,
2014-06-02 02:26:36 +04:00
}
2014-08-01 09:00:36 +04:00
configuration { }
2014-06-02 02:26:36 +04:00
2014-08-01 09:00:36 +04:00
copyLib ( )
end