summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-06-12 19:25:58 +0300
committerTor Lillqvist <tml@iki.fi>2011-06-12 19:25:58 +0300
commitcc3bbd3f1a796e326635bf8594e27d0c1eeb38f4 (patch)
treec905e6d5bd73d9da9d26473d7fb2dfff8d95d70d /test
parente634f62b3951ab6dd8b43e4ee045c3c94562e9ab (diff)
Bypass when cross-compiling, at least for now
Diffstat (limited to 'test')
-rw-r--r--test/source/cpp/makefile.mk6
-rw-r--r--test/source/cpp/unoexceptionprotector/makefile.mk6
2 files changed, 12 insertions, 0 deletions
diff --git a/test/source/cpp/makefile.mk b/test/source/cpp/makefile.mk
index cae88e039574..62a6e2c35019 100644
--- a/test/source/cpp/makefile.mk
+++ b/test/source/cpp/makefile.mk
@@ -32,6 +32,12 @@ VISIBILITY_HIDDEN = TRUE
.INCLUDE: settings.mk
+.IF "$(CROSS_COMPILING)"=="YES"
+all:
+ @echo Nothing done when cross-compiling
+.ENDIF
+
+# --- Files --------------------------------------------------------
CDEFS += -DOOO_DLLIMPLEMENTATION_TEST
CFLAGSCXX += $(CPPUNIT_CFLAGS)
diff --git a/test/source/cpp/unoexceptionprotector/makefile.mk b/test/source/cpp/unoexceptionprotector/makefile.mk
index 86c8bc6fb49e..d3d13e646232 100644
--- a/test/source/cpp/unoexceptionprotector/makefile.mk
+++ b/test/source/cpp/unoexceptionprotector/makefile.mk
@@ -32,6 +32,12 @@ VISIBILITY_HIDDEN = TRUE
.INCLUDE: settings.mk
+.IF "$(CROSS_COMPILING)"=="YES"
+all:
+ @echo Nothing done when cross-compiling
+.ENDIF
+
+# --- Files --------------------------------------------------------
DLLPRE =
CFLAGSCXX += $(CPPUNIT_CFLAGS)