diff options
Diffstat (limited to 'Tests/Complex/CMakeLists.txt')
-rw-r--r-- | Tests/Complex/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Tests/Complex/CMakeLists.txt b/Tests/Complex/CMakeLists.txt index d80d654..609a43e 100644 --- a/Tests/Complex/CMakeLists.txt +++ b/Tests/Complex/CMakeLists.txt @@ -3,7 +3,6 @@ # PROJECT (Complex) -CMAKE_MINIMUM_REQUIRED(VERSION 1.3) # @@ -139,6 +138,13 @@ IF (WIN32) ENDIF (WIN32) # +# Test a set and a remove +# +SET(REMOVE_STRING a b c d e f) +SET(removeVar1 c e) +REMOVE(REMOVE_STRING ${removeVar1} f) + +# # Configure file # (plug vars to #define so that they can be tested) # |