mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
2.8.12 is the lowest known working version number for all platforms. 2.8.7 is known not to work on Ubuntu 12.10.
12 lines
256 B
CMake
12 lines
256 B
CMake
cmake_minimum_required (VERSION 2.8.12)
|
|
|
|
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)
|