Utils.cmake 320 B

123456789101112131415161718192021
  1. include(${CMAKE_CURRENT_LIST_DIR}/test_utils.cmake)
  2. # test the TEST macro itself
  3. TEST(asdf UNDEFINED)
  4. SET (asdf FALSE)
  5. TEST(asdf FALSE)
  6. SET (asdf TRUE)
  7. TEST(asdf TRUE)
  8. SET (asdf TRUE)
  9. TEST(asdf TRUE)
  10. SET (asdf "some value")
  11. TEST(asdf "some value")
  12. SET (asdf some list)
  13. TEST(asdf some list)
  14. TEST(asdf "some;list")