add preliminary glut replacement test for Bullet 2.x demos

This commit is contained in:
Erwin Coumans
2014-07-03 16:42:50 -07:00
parent 87d44cbb74
commit bae303c5da
12 changed files with 416 additions and 37 deletions

View File

@@ -0,0 +1,34 @@
project "App_BasicDemoCustomOpenGL2"
kind "ConsoleApp"
targetdir "../../bin"
includedirs {
"../../src",
"../../btgui"
}
defines { "DONT_USE_GLUT"}
initOpenGL()
initGlew()
links {
"OpenGL_Window","BulletDynamics", "BulletCollision", "LinearMath"
}
files {
"*.cpp" ,
"*.h",
"../../Demos/BasicDemo/BasicDemoPhysicsSetup.cpp",
"../../Demos/BasicDemo/BasicDemoPhysicsSetup.h",
"../../Demos/OpenGL/DemoApplication.cpp",
"../../Demos/OpenGL/DemoApplication.h",
"../../Demos/OpenGL/GL_ShapeDrawer.cpp",
"../../Demos/OpenGL/GL_ShapeDrawer.h",
"../../Demos/OpenGL/GL_ShapeDrawer.cpp",
"../../Demos/OpenGL/GLDebugDrawer.cpp",
"../../Demos/OpenGL/GLDebugDrawer.h",
"../../Demos/OpenGL/GLDebugFont.cpp",
"../../Demos/OpenGL/GLDebugFont.h"
}