mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
15 lines
317 B
CMake
15 lines
317 B
CMake
option(TORQUE_TESTS_ENABLED "TORQUE_TESTS_ENABLED" OFF)
|
|
|
|
if(TORQUE_TESTS_ENABLED)
|
|
|
|
# Project defines
|
|
addDef( "TORQUE_TESTS_ENABLED" )
|
|
addDef( "_VARIADIC_MAX" 10 )
|
|
|
|
# Add source files
|
|
addPathRec( "${srcDir}/testing" )
|
|
|
|
# Add include paths
|
|
addInclude( "${libDir}/gtest/fused-src/" )
|
|
|
|
endif() |