summaryrefslogtreecommitdiffstats
path: root/Tests/ModuleDefinition/example_mod_1.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-10-05 18:39:23 (GMT)
committerBrad King <brad.king@kitware.com>2009-10-05 18:39:23 (GMT)
commitf1b7e620f7fa867ee50eb50ad398d349281691fe (patch)
tree9aae3f9e305e838a034d52a95e1fe43fdecdf569 /Tests/ModuleDefinition/example_mod_1.c
parent667f0724a87ea5fa5f71c475f7588a9deab75ebb (diff)
downloadCMake-f1b7e620f7fa867ee50eb50ad398d349281691fe.zip
CMake-f1b7e620f7fa867ee50eb50ad398d349281691fe.tar.gz
CMake-f1b7e620f7fa867ee50eb50ad398d349281691fe.tar.bz2
Fix ModuleDefinition test for Intel on Windows
CMake defines MSVC only for a VS compiler, but the Intel compiler adds the preprocessor definition _MSC_VER. Instead of relying on separate tests to decide whether to use example_dll_2, we do one test in CMake and then add our own preprocessor definition.
Diffstat (limited to 'Tests/ModuleDefinition/example_mod_1.c')
-rw-r--r--Tests/ModuleDefinition/example_mod_1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/ModuleDefinition/example_mod_1.c b/Tests/ModuleDefinition/example_mod_1.c
index 483f60e..4e2f9ba 100644
--- a/Tests/ModuleDefinition/example_mod_1.c
+++ b/Tests/ModuleDefinition/example_mod_1.c
@@ -6,7 +6,7 @@
int __declspec(dllimport) example_exe_function(void);
int __declspec(dllimport) example_dll_function(void);
-#ifdef _MSC_VER
+#ifdef EXAMPLE_DLL_2
int __declspec(dllimport) example_dll_2_function(void);
#endif
@@ -14,7 +14,7 @@ __declspec(dllexport) int MODULE_CCONV example_mod_1_function(int n)
{
return
example_dll_function() +
-#ifdef _MSC_VER
+#ifdef EXAMPLE_DLL_2
example_dll_2_function() +
#endif
example_exe_function() + n;