diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-08-24 18:39:13 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-08-24 18:39:13 (GMT) |
commit | 90aabf14f93de211229bd701c9a4c3ec98e31fdb (patch) | |
tree | bc57e4ab404bb67281eb1f0ed48505260fce19ae /Tests/SourceGroups/CMakeLists.txt | |
parent | 938ed7710ab15ad13f51bd17243cfe20cf8285eb (diff) | |
download | CMake-90aabf14f93de211229bd701c9a4c3ec98e31fdb.zip CMake-90aabf14f93de211229bd701c9a4c3ec98e31fdb.tar.gz CMake-90aabf14f93de211229bd701c9a4c3ec98e31fdb.tar.bz2 |
BUG: demo (not really test) for the source_group() command
Alex
Diffstat (limited to 'Tests/SourceGroups/CMakeLists.txt')
-rw-r--r-- | Tests/SourceGroups/CMakeLists.txt | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/Tests/SourceGroups/CMakeLists.txt b/Tests/SourceGroups/CMakeLists.txt index ab96bac..15fdee2 100644 --- a/Tests/SourceGroups/CMakeLists.txt +++ b/Tests/SourceGroups/CMakeLists.txt @@ -1,9 +1,25 @@ -#source_group(Base FILES main.c) -#source_group(Base\\Sub1 FILES sub1/foo.c) -#source_group(Base\\Sub1\\Sub2 FILES sub1/foobar.c) -#source_group("" FILES foo.c) -#source_group("\\" FILES bar.c) +source_group(Base FILES main.c) +# a sub group +source_group(Base\\Sub1 FILES sub1/foo.c) -add_executable(SourceGroups main.c bar.c foo.c sub1/foo.c sub1/foobar.c) +# a sub sub group +source_group(Base\\Sub1\\Sub2 FILES sub1/foobar.c) + +# a group with empty name +source_group("" FILES foo.c) + +# a group, whose name consists only of the delimiter +#should be handled the same way as an empty name +source_group("\\" FILES baz.c) + +# a sub sub group whose last component has the same name +# as an already existing group +source_group(Base\\Sub1\\Base FILES bar.c) + +# a group without files, is currently not created +source_group(EmptyGroup) + + +add_executable(SourceGroups main.c bar.c foo.c sub1/foo.c sub1/foobar.c baz.c) |