summaryrefslogtreecommitdiffstats
path: root/Tests/Testing/pcShared.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-12-21 19:03:24 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2010-12-21 19:03:24 (GMT)
commit31b0657e7d4bab3e6c5a00c1318d1c231d8ab44b (patch)
tree5f16dfb9e9d73794a6c791147a6614b8e5492e2a /Tests/Testing/pcShared.h
parent533f5a20372829aa41a71ed4698cac2a50820a7e (diff)
parent4499d50ad2df7c1db4335d40f9fa20c642f59a5d (diff)
downloadCMake-31b0657e7d4bab3e6c5a00c1318d1c231d8ab44b.zip
CMake-31b0657e7d4bab3e6c5a00c1318d1c231d8ab44b.tar.gz
CMake-31b0657e7d4bab3e6c5a00c1318d1c231d8ab44b.tar.bz2
Merge topic 'custom-command-generator-expressions'
4499d50 Mark CustomCommand test perconfig.out as SYMBOLIC f0cdb60 Introduce "generator expression" syntax to custom commands (#11209) 4749e4c Record set of targets used in cmGeneratorExpression ef9e9de Optionally suppress errors in cmGeneratorExpression 45e1953 Factor per-config sample targets out of 'Testing' test 4091bca Factor generator expression docs out of add_test bfb7288 Record backtrace in cmCustomCommand
Diffstat (limited to 'Tests/Testing/pcShared.h')
-rw-r--r--Tests/Testing/pcShared.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/Tests/Testing/pcShared.h b/Tests/Testing/pcShared.h
deleted file mode 100644
index 59a6ef4..0000000
--- a/Tests/Testing/pcShared.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef pcShared_h
-#define pcShared_h
-
-#ifdef _WIN32
-# ifdef pcShared_EXPORTS
-# define PC_EXPORT __declspec(dllexport)
-# else
-# define PC_EXPORT __declspec(dllimport)
-# endif
-#else
-# define PC_EXPORT
-#endif
-
-PC_EXPORT const char* pcShared(void);
-
-#endif