From a46b4fb5e82e0592404d725ddc8746431cdb1995 Mon Sep 17 00:00:00 2001 From: Azaezel Date: Tue, 18 Oct 2016 11:20:28 -0500 Subject: [PATCH] clang: The unit test suite doesn't play nice with -wundef (test for #if +uninitialized #defines) leaving that as an option, but off by default to allow filtering through engine specific #defines for issues, rather than wading through the spam kicked up by the plugin. --- Tools/CMake/modules/module_testing.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/CMake/modules/module_testing.cmake b/Tools/CMake/modules/module_testing.cmake index 917b00622..39d5a4ff1 100644 --- a/Tools/CMake/modules/module_testing.cmake +++ b/Tools/CMake/modules/module_testing.cmake @@ -20,7 +20,7 @@ # IN THE SOFTWARE. # ----------------------------------------------------------------------------- -option(TORQUE_TESTING "Enable unit test module" ON) +option(TORQUE_TESTING "Enable unit test module" OFF) mark_as_advanced(TORQUE_TESTING) if(TORQUE_TESTING)