summaryrefslogtreecommitdiffstats
path: root/Tests/PerConfig/perconfig.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-12-17 15:07:19 (GMT)
committerBrad King <brad.king@kitware.com>2010-12-17 15:07:19 (GMT)
commit853de2ed1288dbf891778db30653927d0e223a44 (patch)
tree93a53e32c5d60af84c66c76511c103ab9ee52db1 /Tests/PerConfig/perconfig.c
parentd89e238e6c4b22fe3fde0f8e1e7987fb05f13aeb (diff)
parent45e1953c4037d4492668651ae3bbfd6a4a875bc1 (diff)
downloadCMake-853de2ed1288dbf891778db30653927d0e223a44.zip
CMake-853de2ed1288dbf891778db30653927d0e223a44.tar.gz
CMake-853de2ed1288dbf891778db30653927d0e223a44.tar.bz2
Merge branch 'custom-command-generator-expressions' into resolve/tests-if-CYGWIN
The tests-if-CYGWIN topic made a change to Tests/Testing/CMakeLists.txt in code that the custom-command-generator-expressions topic moved to the Tests/PerConfig/CMakeLists.txt file. Make the same change to the same content in the new file. (Only a small part of the file moved so rename detection did not do this automatically.)
Diffstat (limited to 'Tests/PerConfig/perconfig.c')
-rw-r--r--Tests/PerConfig/perconfig.c8
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;
+}