From 90aabf14f93de211229bd701c9a4c3ec98e31fdb Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Fri, 24 Aug 2007 14:39:13 -0400 Subject: [PATCH] BUG: demo (not really test) for the source_group() command Alex --- Tests/SourceGroups/CMakeLists.txt | 28 ++++++++++++++++++++++------ Tests/SourceGroups/baz.c | 4 ++++ Tests/SourceGroups/main.c | 3 ++- 3 files changed, 28 insertions(+), 7 deletions(-) create mode 100644 Tests/SourceGroups/baz.c diff --git a/Tests/SourceGroups/CMakeLists.txt b/Tests/SourceGroups/CMakeLists.txt index ab96baccc..15fdee226 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) + +# 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) +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 000000000..477f4fa6e --- /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 cd17e24c7..212e64baa 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; }