diff options
author | Brad King <brad.king@kitware.com> | 2013-10-21 16:49:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-21 16:54:20 (GMT) |
commit | 4e184a21beda9de3703ecda94085c234f5bbd7da (patch) | |
tree | e127479207d0d9677d1713ba1eb08f6d26b3a768 /Tests/RunCMake/CMakeLists.txt | |
parent | 9fb65d7090ca314cd8bfd88e52fefa6905938a6d (diff) | |
download | CMake-4e184a21beda9de3703ecda94085c234f5bbd7da.zip CMake-4e184a21beda9de3703ecda94085c234f5bbd7da.tar.gz CMake-4e184a21beda9de3703ecda94085c234f5bbd7da.tar.bz2 |
string: Add CONCAT sub-command
Add a string(CONCAT) command to simply concatenate input arguments
together. This will be useful for combining strings from different
quoting syntaxes. Add a RunCMake.string test covering these cases.
Diffstat (limited to 'Tests/RunCMake/CMakeLists.txt')
-rw-r--r-- | Tests/RunCMake/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index 52c8667..44da6f2 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -98,6 +98,7 @@ add_RunCMake_test(include) add_RunCMake_test(include_directories) add_RunCMake_test(list) add_RunCMake_test(message) +add_RunCMake_test(string) add_RunCMake_test(try_compile) add_RunCMake_test(variable_watch) add_RunCMake_test(CMP0004) |