reorganize files and add btgui

This commit is contained in:
erwin coumans
2013-03-12 23:52:31 -07:00
parent 9612c2cd3d
commit e4a7b6f487
262 changed files with 46553 additions and 14753 deletions

View File

@@ -0,0 +1,51 @@
if os.is("macosx") then
project "Gwen_OpenGLTest_Apple"
kind "ConsoleApp"
flags {"Unicode"}
defines { "GWEN_COMPILE_STATIC" , "_HAS_EXCEPTIONS=0", "_STATIC_CPPLIB" }
targetdir "../../../../bin"
includedirs
{
"../..","..","../../../rendertest","../../../../bullet2"
}
initOpenGL()
initGlew()
links {
"gwen","Cocoa.framework"
}
files {
"../../../rendertest/MacOpenGLWindow.mm",
"../../../rendertest/MacOpenGLWindow.h",
"../../../rendertest/TwFonts.cpp",
"../../../rendertest/TwFonts.h",
"../../../rendertest/LoadShader.cpp",
"../../../rendertest/LoadShader.h",
"../../../rendertest/GLPrimitiveRenderer.cpp",
"../../../rendertest/GLPrimitiveRenderer.h",
"../../../rendertest/GwenOpenGL3CoreRenderer.h",
"../../../OpenGLTrueTypeFont/fontstash.cpp",
"../../../OpenGLTrueTypeFont/fontstash.h",
"../../../OpenGLTrueTypeFont/opengl_fontstashcallbacks.cpp",
"../../../OpenGLTrueTypeFont/opengl_fontstashcallbacks.h",
"../../../../bullet2/LinearMath/btConvexHullComputer.cpp",
"../../../../bullet2/LinearMath/btConvexHullComputer.h",
"../../../../bullet2/LinearMath/btSerializer.cpp",
"../../../../bullet2/LinearMath/btSerializer.h",
"../../../../bullet2/LinearMath/btAlignedAllocator.cpp",
"../../../../bullet2/LinearMath/btQuickprof.cpp",
"../../../../bullet2/LinearMath/btQuickprof.h",
"../**.cpp",
"../**.h",
}
end