bgfx/premake/bgfx.lua

36 lines
518 B
Lua
Raw Normal View History

2012-06-01 22:55:56 -04:00
project "bgfx"
uuid "2dc7fd80-ed76-11e0-be50-0800200c9a66"
kind "StaticLib"
includedirs {
BGFX_DIR .. "../bx/include",
2012-06-02 15:44:37 -04:00
BGFX_DIR .. "3rdparty/glext",
2012-06-01 22:55:56 -04:00
}
2012-06-02 15:44:37 -04:00
buildoptions {
"-Wall",
}
2012-06-01 22:55:56 -04:00
2012-06-02 15:44:37 -04:00
defines {
-- "BGFX_CONFIG_RENDERER_OPENGL=1",
}
2012-06-01 22:55:56 -04:00
configuration "Debug"
defines {
"BGFX_CONFIG_DEBUG=1",
}
configuration {}
includedirs {
BGFX_DIR .. "include",
}
files {
BGFX_DIR .. "include/**.h",
BGFX_DIR .. "src/**.cpp",
BGFX_DIR .. "src/**.h",
}
-- copyLib()