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

@@ -1,11 +1,21 @@
project "BulletDynamics"
kind "StaticLib"
targetdir "../../lib"
includedirs {
"..",
}
files {
"**.cpp",
"**.h"
}
project "BulletDynamics"
kind "StaticLib"
includedirs {
"..",
}
files {
"Dynamics/*.cpp",
"Dynamics/*.h",
"ConstraintSolver/*.cpp",
"ConstraintSolver/*.h",
"Featherstone/*.cpp",
"Featherstone/*.h",
"MLCPSolvers/*.cpp",
"MLCPSolvers/*.h",
"Vehicle/*.cpp",
"Vehicle/*.h",
"Character/*.cpp",
"Character/*.h"
}