mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
508550c5e9
See also issue #1538
35 lines
550 B
Lua
35 lines
550 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"}
|
|
if os.is("Linux") then
|
|
buildoptions{"-fPIC"}
|
|
end
|
|
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"
|
|
}
|