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