summaryrefslogtreecommitdiffstats
path: root/Tests/ObjectLibrary/B/b.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-03-20 19:06:16 (GMT)
committerBrad King <brad.king@kitware.com>2012-03-20 19:09:57 (GMT)
commitfb7348f64455242dcbbb3837c697c9bf88414ae2 (patch)
treeb0be3651270c1944fb78ec938cf40c59d115faba /Tests/ObjectLibrary/B/b.h
parent93d5509b5b1c208f3ed28daf35f9384ab6918441 (diff)
downloadCMake-fb7348f64455242dcbbb3837c697c9bf88414ae2.zip
CMake-fb7348f64455242dcbbb3837c697c9bf88414ae2.tar.gz
CMake-fb7348f64455242dcbbb3837c697c9bf88414ae2.tar.bz2
Fix ObjectLibrary test on Watcom
The Watcom compiler interprets "-DB" as option -db generate browsing information so define "A_DEF" and "B_DEF" instead of just "A" and "B". Skip CMAKE_SHARED_LIBRARY_C_FLAGS for Watcom because it is set to -bd build Dynamic link library which adds a DLL entry point to each object.
Diffstat (limited to 'Tests/ObjectLibrary/B/b.h')
-rw-r--r--Tests/ObjectLibrary/B/b.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Tests/ObjectLibrary/B/b.h b/Tests/ObjectLibrary/B/b.h
index 632004d..11b22f4 100644
--- a/Tests/ObjectLibrary/B/b.h
+++ b/Tests/ObjectLibrary/B/b.h
@@ -1,8 +1,8 @@
-#ifdef A
-# error "A must not be defined"
+#ifdef A_DEF
+# error "A_DEF must not be defined"
#endif
-#ifndef B
-# error "B not defined"
+#ifndef B_DEF
+# error "B_DEF not defined"
#endif
#if defined(_WIN32) && defined(Bexport)
# define EXPORT_B __declspec(dllexport)