CMP0199-NEW.cmake 368 B

12345678910111213
  1. project(test-CMP0199-NEW C)
  2. cmake_policy(SET CMP0199 NEW)
  3. # Note: Under CMP0199 OLD, CMake (incorrectly) selects the RELEASE
  4. # configuration for the mapped config test. The CMP0199-NEW+CMP0200-NEW tests
  5. # the combination of fixes.
  6. cmake_policy(SET CMP0200 OLD)
  7. include(CMP0199-cases.cmake)
  8. do_mapped_config_test(EXPECT_RELEASE)
  9. do_unique_config_test(EXPECT_DEBUG)