premake: use *.cpp insteadl of **.cpp

This commit is contained in:
Erwin Coumans
2014-09-05 11:22:25 -07:00
parent 61808844de
commit a26f9c1871
8 changed files with 45 additions and 31 deletions

View File

@@ -11,11 +11,21 @@ end
defines { "GWEN_COMPILE_STATIC" , "_HAS_EXCEPTIONS=0", "_STATIC_CPPLIB" }
defines { "DONT_USE_GLUT"}
targetdir "../../lib"
includedirs {
".",".."
}
files {
"**.cpp",
"**.h"
"*.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"
}