add preliminary premake4 support (next to cmake) mainly to auto-generate Visual Studio projectfiles that can be redistributed (with no dependency on cmake, premake)

This commit is contained in:
erwin.coumans
2011-09-02 22:24:08 +00:00
parent ed02816e68
commit 82234e6f33
23 changed files with 452 additions and 10 deletions

9
Extras/HACD/premake4.lua Normal file
View File

@@ -0,0 +1,9 @@
project "HACD"
kind "StaticLib"
targetdir "../../lib"
includedirs {"."}
files {
"**.cpp",
"**.h"
}