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/pcShared.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/pcShared.c')
-rw-r--r-- | Tests/PerConfig/pcShared.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/PerConfig/pcShared.c b/Tests/PerConfig/pcShared.c new file mode 100644 index 0000000..b08fadc --- /dev/null +++ b/Tests/PerConfig/pcShared.c @@ -0,0 +1,5 @@ +#include "pcShared.h" +const char* pcShared(void) +{ + return "INFO:symbol[pcShared]"; +} |