From f05a552c61c35c2fbc428462dc71b36ab4919d54 Mon Sep 17 00:00:00 2001 From: "Thomas \"elfprince13\" Dickerson" Date: Wed, 11 Jan 2017 18:03:21 -0500 Subject: [PATCH] Optionally include a CMake configurations file from the project directory to support configuration changes that don't have to alter the whole engine repo --- Tools/CMake/torque3d.cmake | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Tools/CMake/torque3d.cmake b/Tools/CMake/torque3d.cmake index 44591dd94..a8220a545 100644 --- a/Tools/CMake/torque3d.cmake +++ b/Tools/CMake/torque3d.cmake @@ -742,6 +742,12 @@ if(MSVC) endforeach() endif() +############################################################################### +# Project-specific configuration: +############################################################################### + +include(${TORQUE_APP_DIR}/${PROJECT_NAME}.cmake OPTIONAL) + ############################################################################### # Installation ###############################################################################