22 lines
320 B
CMake
Raw Normal View History

2016-03-13 13:35:51 +01:00
include(${CMAKE_CURRENT_LIST_DIR}/test_utils.cmake)
# test the TEST macro itself
TEST(asdf UNDEFINED)
SET (asdf FALSE)
TEST(asdf FALSE)
SET (asdf TRUE)
TEST(asdf TRUE)
SET (asdf TRUE)
TEST(asdf TRUE)
SET (asdf "some value")
TEST(asdf "some value")
SET (asdf some list)
2016-10-30 18:24:19 +01:00
TEST(asdf some list)
2016-03-13 13:35:51 +01:00
TEST(asdf "some;list")