diff options
author | Brad King <brad.king@kitware.com> | 2010-12-07 22:36:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-12-15 19:53:33 (GMT) |
commit | 45e1953c4037d4492668651ae3bbfd6a4a875bc1 (patch) | |
tree | 37d90c289495eaeb53aa1d13b18dcbeb93859523 /Tests/PerConfig/perconfig.c | |
parent | 4091bca4ecf4a7f9c2099a7d34e125494de60e1c (diff) | |
download | CMake-45e1953c4037d4492668651ae3bbfd6a4a875bc1.zip CMake-45e1953c4037d4492668651ae3bbfd6a4a875bc1.tar.gz CMake-45e1953c4037d4492668651ae3bbfd6a4a875bc1.tar.bz2 |
Factor per-config sample targets out of 'Testing' test
Put the source files, build rules, and test scripts for these targets
under Tests/PerConfig and refer to it from Tests/Testing as a
subdirectory. The targets and scripts will be useful in other tests.
Diffstat (limited to 'Tests/PerConfig/perconfig.c')
-rw-r--r-- | Tests/PerConfig/perconfig.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/PerConfig/perconfig.c b/Tests/PerConfig/perconfig.c new file mode 100644 index 0000000..d942d45 --- /dev/null +++ b/Tests/PerConfig/perconfig.c @@ -0,0 +1,8 @@ +#include "pcShared.h" +extern const char* pcStatic(void); +int main() +{ + pcStatic(); + pcShared(); + return 0; +} |