mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-20 08:11:01 +00:00
32 lines
485 B
Lua
32 lines
485 B
Lua
|
project "gwen"
|
||
|
|
||
|
kind "StaticLib"
|
||
|
|
||
|
--flags {"Unicode"}
|
||
|
initOpenGL()
|
||
|
initGlew()
|
||
|
if os.is("Linux") then
|
||
|
initX11()
|
||
|
end
|
||
|
|
||
|
defines { "GWEN_COMPILE_STATIC" }
|
||
|
defines { "DONT_USE_GLUT"}
|
||
|
includedirs {
|
||
|
".",".."
|
||
|
}
|
||
|
files {
|
||
|
"*.cpp",
|
||
|
"*.h",
|
||
|
"Controls/*.cpp",
|
||
|
"Controls/*.h",
|
||
|
"Controls/Dialog/*.cpp",
|
||
|
"Controls/Dialogs/*.h",
|
||
|
"Controls/Layout/*.h",
|
||
|
"Controls/Property/*.h",
|
||
|
"Input/*.h",
|
||
|
"Platforms/*.cpp",
|
||
|
"Renderers/*.cpp",
|
||
|
"Skins/*.cpp",
|
||
|
"Skins/*.h"
|
||
|
}
|