mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 07:04:36 +00:00
* Adjustment: Update Bullet version to 3.24.
This commit is contained in:
parent
35de012ee7
commit
4a3f31df2a
6148 changed files with 2112532 additions and 56873 deletions
75
Engine/lib/bullet/test/GwenOpenGLTest/premake4.lua
Normal file
75
Engine/lib/bullet/test/GwenOpenGLTest/premake4.lua
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
|
||||
project "Test_Gwen_OpenGL"
|
||||
|
||||
kind "ConsoleApp"
|
||||
flags {"Unicode"}
|
||||
|
||||
defines { "GWEN_COMPILE_STATIC" , "_HAS_EXCEPTIONS=0", "_STATIC_CPPLIB" }
|
||||
defines { "DONT_USE_GLUT"}
|
||||
|
||||
|
||||
|
||||
includedirs
|
||||
{
|
||||
|
||||
"../../examples/ThirdPartyLibs",
|
||||
"../../examples",
|
||||
".",
|
||||
"../../src"
|
||||
}
|
||||
|
||||
initOpenGL()
|
||||
initGlew()
|
||||
|
||||
links {
|
||||
"gwen","Bullet3Common"
|
||||
}
|
||||
|
||||
|
||||
files {
|
||||
"../../examples/OpenGLWindow/OpenSans.cpp",
|
||||
"../../examples/OpenGLWindow/TwFonts.cpp",
|
||||
"../../examples/OpenGLWindow/TwFonts.h",
|
||||
"../../examples/OpenGLWindow/LoadShader.cpp",
|
||||
"../../examples/OpenGLWindow/LoadShader.h",
|
||||
"../../examples/OpenGLWindow/GLPrimitiveRenderer.cpp",
|
||||
"../../examples/OpenGLWindow/GLPrimitiveRenderer.h",
|
||||
"../../examples/OpenGLWindow/GwenOpenGL3CoreRenderer.h",
|
||||
"../../examples/OpenGLWindow/fontstash.cpp",
|
||||
"../../examples/OpenGLWindow/fontstash.h",
|
||||
"../../examples/OpenGLWindow/opengl_fontstashcallbacks.cpp",
|
||||
"../../examples/OpenGLWindow/opengl_fontstashcallbacks.h",
|
||||
"../../examples/Utils/b3Clock.cpp",
|
||||
"../../examples/Utils/b3Clock.h",
|
||||
"../../examples/ThirdPartyLibs/stb_image/stb_image_write.cpp",
|
||||
"**.cpp",
|
||||
"**.h",
|
||||
}
|
||||
files {
|
||||
"../../examples/OpenGLWindow/GLFWOpenGLWindow.cpp",
|
||||
}
|
||||
if os.is("Windows") then
|
||||
files {
|
||||
"../../examples/OpenGLWindow/Win32OpenGLWindow.cpp",
|
||||
"../../examples/OpenGLWindow/Win32OpenGLWindow.h",
|
||||
"../../examples/OpenGLWindow/Win32Window.cpp",
|
||||
"../../examples/OpenGLWindow/Win32Window.h",
|
||||
}
|
||||
end
|
||||
if os.is("Linux") then
|
||||
initX11()
|
||||
files{
|
||||
"../../examples/OpenGLWindow/X11OpenGLWindow.h",
|
||||
"../../examples/OpenGLWindow/X11OpenGLWindow.cpp"
|
||||
}
|
||||
links{"pthread"}
|
||||
end
|
||||
if os.is("MacOSX") then
|
||||
links{"Cocoa.framework"}
|
||||
files{
|
||||
"../../examples/OpenGLWindow/MacOpenGLWindow.cpp",
|
||||
"../../examples/OpenGLWindow/MacOpenGLWindow.h",
|
||||
"../../examples/OpenGLWindow/MacOpenGLWindowObjC.m",
|
||||
"../../examples/OpenGLWindow/MacOpenGLWindowObjC.h",
|
||||
}
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue