mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-10 01:20:05 +00:00
fca6d11381
remove reference to btGImpact (it is removed now)
39 lines
663 B
Lua
39 lines
663 B
Lua
|
|
project "App2_BasicDemo"
|
|
|
|
language "C++"
|
|
|
|
kind "ConsoleApp"
|
|
targetdir "../../../bin"
|
|
|
|
includedirs {
|
|
".",
|
|
"../../../src",
|
|
"../../../btgui"
|
|
}
|
|
|
|
initOpenGL()
|
|
initGlew()
|
|
|
|
links{"gwen", "BulletDynamics", "BulletCollision","LinearMath",
|
|
"OpenGL_Window", "OpenGL_TrueTypeFont"
|
|
}
|
|
|
|
files {
|
|
"**.cpp",
|
|
"**.h",
|
|
"../../../src/Bullet3Common/**.cpp",
|
|
"../../../src/Bullet3Common/**.h",
|
|
"../../../btgui/Timing/b3Clock.cpp",
|
|
"../../../btgui/Timing/b3Clock.h"
|
|
|
|
}
|
|
|
|
if os.is("Linux") then
|
|
links ("X11")
|
|
end
|
|
|
|
if os.is("MacOSX") then
|
|
links{"Cocoa.framework"}
|
|
end
|