Torque3D/Tools/CMake/CMakeLists.txt
Thomas Fischer 36cc041254 enforced setting the app name and fixed default-appname bugs
added debug batch file for windows
improved project filters for executable: separated into engine and user sources
refactored version numbers, added them to the .rc file
changed /W2 to /W4
TORQUE_DEBUG,TORQUE_ENABLE_ASSERTS and TORQUE_DEBUG_GFX_MODE now automatically defined in debug mode
2014-03-20 05:34:45 +01:00

28 lines
No EOL
516 B
CMake

include(basics.cmake)
setupVersionNumbers()
#the libs
include(lmng.cmake)
include(lpng.cmake)
include(lungif.cmake)
include(zlib.cmake)
include(ljpeg.cmake)
include(tinyxml.cmake)
include(opcode.cmake)
include(squish.cmake)
include(collada.cmake)
include(pcre.cmake)
include(convexDecomp.cmake)
if(TORQUE_SFX_VORBIS)
include(libvorbis.cmake)
include(libogg.cmake)
endif()
if(TORQUE_THEORA)
include(libtheora.cmake)
endif()
# the main engine, should come last
include(torque3d.cmake)
#setupPackaging()