bullet3/examples/ThirdPartyLibs/Gwen/premake4.lua
2018-02-09 18:46:26 -08:00

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"
}