summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/list/FILTER-REGEX-Valid1.cmake
blob: e65928191fb7d0fd2d0a2a358116f25497d374f9 (plain)
1
2
3
4
set(mylist FILTER_THIS_BIT DO_NOT_FILTER_THIS thisisanitem FILTER_THIS_THING)
message("mylist was: ${mylist}")
list(FILTER mylist INCLUDE REGEX "^FILTER_THIS_.+")
message("mylist is: ${mylist}")