mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
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
11 lines
254 B
CMake
11 lines
254 B
CMake
cmake_minimum_required (VERSION 2.8.3)
|
|
|
|
set(TORQUE_APP_NAME "" CACHE STRING "the app name")
|
|
|
|
if("${TORQUE_APP_NAME}" STREQUAL "")
|
|
message(FATAL_ERROR "Please set TORQUE_APP_NAME first")
|
|
endif()
|
|
|
|
project(${TORQUE_APP_NAME})
|
|
|
|
add_subdirectory(Tools/CMake) |