diff options
author | Brad King <brad.king@kitware.com> | 2009-08-11 13:56:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-08-11 13:56:02 (GMT) |
commit | 875c478b64de0e0986394e2d642254f7943ec588 (patch) | |
tree | 6d0f976715e3434f2f0d08c87eaf59e6e1c80070 /Tests/Testing/perconfig.c | |
parent | d2e1f2b4d6d87c171464b5dc41b00b609c90bf26 (diff) | |
download | CMake-875c478b64de0e0986394e2d642254f7943ec588.zip CMake-875c478b64de0e0986394e2d642254f7943ec588.tar.gz CMake-875c478b64de0e0986394e2d642254f7943ec588.tar.bz2 |
Test add_test() generator expressions
This teaches the 'testing' test to try generator expressions in
arguments to add_test(NAME). This test case mimics a common use-case of
passing executables to test driver scripts. We excercise the syntax for
per-configuration target file names.
Diffstat (limited to 'Tests/Testing/perconfig.c')
-rw-r--r-- | Tests/Testing/perconfig.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/Testing/perconfig.c b/Tests/Testing/perconfig.c index f8b643a..d942d45 100644 --- a/Tests/Testing/perconfig.c +++ b/Tests/Testing/perconfig.c @@ -1,4 +1,8 @@ +#include "pcShared.h" +extern const char* pcStatic(void); int main() { + pcStatic(); + pcShared(); return 0; } |