diff options
| author | Stephen Kelly <steveire@gmail.com> | 2014-03-18 16:21:08 +0100 |
|---|---|---|
| committer | Stephen Kelly <steveire@gmail.com> | 2014-03-31 23:18:44 +0200 |
| commit | 28e1d2f8fc08516e8fc3a009777437d3e086b8e6 (patch) | |
| tree | 6706855db40e1726ad1d5e29bf8c763c7286156e /Tests/StringFileTest | |
| parent | bf98cc252f18e761ed9a57d2f7a9304bfbb621de (diff) | |
| download | cmake-28e1d2f8fc08516e8fc3a009777437d3e086b8e6.tar.gz | |
cmStringCommand: Add GENEX_STRIP subcommand.
Strip out any generator expressions in the input string.
Diffstat (limited to 'Tests/StringFileTest')
| -rw-r--r-- | Tests/StringFileTest/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/StringFileTest/CMakeLists.txt b/Tests/StringFileTest/CMakeLists.txt index 00383ab37c..be6d8fe355 100644 --- a/Tests/StringFileTest/CMakeLists.txt +++ b/Tests/StringFileTest/CMakeLists.txt @@ -286,3 +286,9 @@ string(MAKE_C_IDENTIFIER "1one-two$" MCI_1) if(NOT MCI_1 STREQUAL _1one_two_) message(SEND_ERROR "MAKE_C_IDENTIFIER did not create expected result.") endif() + +string(GENEX_STRIP "one;$<1:two;three>;four;$<TARGET_OBJECTS:some_target>" strip_result) + +if (NOT strip_result STREQUAL "one;four") + message(SEND_ERROR "GENEX_STRIP did not create expected result: ${strip_result}") +endif() |
