mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
35 lines
518 B
Lua
35 lines
518 B
Lua
project "bgfx"
|
|
uuid "2dc7fd80-ed76-11e0-be50-0800200c9a66"
|
|
kind "StaticLib"
|
|
|
|
includedirs {
|
|
BGFX_DIR .. "../bx/include",
|
|
BGFX_DIR .. "3rdparty/glext",
|
|
}
|
|
|
|
buildoptions {
|
|
"-Wall",
|
|
}
|
|
|
|
defines {
|
|
-- "BGFX_CONFIG_RENDERER_OPENGL=1",
|
|
}
|
|
|
|
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()
|