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 | |
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')
-rw-r--r-- | Tests/SourceGroups/CMakeLists.txt | 28 | ||||
-rw-r--r-- | Tests/SourceGroups/baz.c | 4 | ||||
-rw-r--r-- | Tests/SourceGroups/main.c | 3 |
3 files changed, 28 insertions, 7 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) diff --git a/Tests/SourceGroups/baz.c b/Tests/SourceGroups/baz.c new file mode 100644 index 0000000..477f4fa --- /dev/null +++ b/Tests/SourceGroups/baz.c @@ -0,0 +1,4 @@ +int baz(void) +{ + return 13; +} diff --git a/Tests/SourceGroups/main.c b/Tests/SourceGroups/main.c index cd17e24..212e64b 100644 --- a/Tests/SourceGroups/main.c +++ b/Tests/SourceGroups/main.c @@ -4,9 +4,10 @@ extern int foo(void); extern int bar(void); extern int foobar(void); extern int barbar(void); +extern int baz(void); int main() { - printf("foo: %d bar: %d foobar: %d barbar: %d\n", foo(), bar(), foobar(), barbar()); + printf("foo: %d bar: %d foobar: %d barbar: %d baz: %d\n", foo(), bar(), foobar(), barbar(), baz()); return 0; } |