Files
bullet3/Demos3/BasicDemoConsole/premake4.lua
Erwin Coumans 07e2dcc749 minor cleanup of btgui/demo3 stuff, much more demo cleanup is needed
moved some files in btgui/Bullet3AppSupport
2014-09-16 12:08:24 -07:00

27 lines
720 B
Lua

project "App_BasicDemoConsole"
kind "ConsoleApp"
targetdir "../../bin"
includedirs {"../../src","../../btgui"}
configuration { "Windows" }
-- links { "opengl32","glu32","gdi32","winmm", "user32" }
files { "../../build3/bullet.rc" }
-- configuration {"MacOSX"}
--print "hello"
-- linkoptions { "-framework Carbon -framework OpenGL -framework AGL -framework Glut" }
-- configuration {"not Windows", "not MacOSX"}
-- links {"GL","GLU","glut"}
configuration{}
links {
"BulletDynamics", "BulletCollision", "LinearMath"
}
files {
"*.cpp" ,
"*.h",
"../../Demos/BasicDemo/BasicDemoPhysicsSetup.cpp",
"../../Demos/BasicDemo/BasicDemoPhysicsSetup.h"
}