mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
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.
14 lines
581 B
CMake
14 lines
581 B
CMake
set(CMake_TEST_WIX_NO_VERIFY "ON" CACHE BOOL "")
|
|
set(CMake_TEST_GUI "ON" CACHE BOOL "")
|
|
set(CMake_TEST_FindODBC "ON" CACHE BOOL "")
|
|
set(CMake_TEST_FindOpenGL "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_IPO_WORKS_C "ON" CACHE BOOL "")
|
|
set(CMake_TEST_IPO_WORKS_CXX "ON" CACHE BOOL "")
|
|
set(CMake_TEST_MFC "ON" CACHE BOOL "")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/configure_windows_common.cmake")
|