mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
9d621ceba1
Previously we used a complicated heuristic to decide whether or not to run the MFC test, but it sometimes decided incorrectly to run the test. Since that was first written, we have developed a convention for other tests to enable them via undocumented cache entries that are added only on machines known to meet the tests' requirements. Do that for MFC.
11 lines
438 B
CMake
11 lines
438 B
CMake
set(CMake_TEST_WIX_NO_VERIFY "ON" CACHE BOOL "")
|
|
set(CMake_TEST_FindODBC "ON" CACHE BOOL "")
|
|
set(CMake_TEST_FindOpenMP "ON" CACHE BOOL "")
|
|
set(CMake_TEST_FindOpenMP_C "ON" CACHE BOOL "")
|
|
set(CMake_TEST_FindOpenMP_CXX "ON" CACHE BOOL "")
|
|
set(CMake_TEST_FindOpenMP_Fortran "OFF" CACHE BOOL "")
|
|
set(CMake_TEST_Java OFF CACHE BOOL "")
|
|
set(CMake_TEST_MFC "ON" CACHE BOOL "")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/configure_external_test.cmake")
|