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/main.c | |
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/main.c')
-rw-r--r-- | Tests/SourceGroups/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |