diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-06-06 00:33:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-06-06 00:33:04 +0300 |
commit | 10f52859441b49d648de668ed38c133b6029b2dd (patch) | |
tree | 529a9bfb8f5c2340df704aab77287b98e550cf03 /cppuhelper | |
parent | b002b82925ac159d7baeb179022bd03675f08f00 (diff) |
Bypass qa thingies for now when cross-compiling
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/qa/ifcontainer/makefile.mk | 5 | ||||
-rw-r--r-- | cppuhelper/qa/propertysetmixin/makefile.mk | 5 | ||||
-rw-r--r-- | cppuhelper/qa/unourl/makefile.mk | 5 | ||||
-rw-r--r-- | cppuhelper/qa/weak/makefile.mk | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/cppuhelper/qa/ifcontainer/makefile.mk b/cppuhelper/qa/ifcontainer/makefile.mk index 6f3476aa4..5284f4b08 100644 --- a/cppuhelper/qa/ifcontainer/makefile.mk +++ b/cppuhelper/qa/ifcontainer/makefile.mk @@ -35,6 +35,11 @@ ENABLE_EXCEPTIONS=TRUE .INCLUDE : settings.mk +.IF "$(CROSS_COMPILING)"=="YES" +all: + @echo Nothing done when cross-compiling +.ENDIF + CFLAGSCXX += $(CPPUNIT_CFLAGS) # BEGIN ---------------------------------------------------------------- diff --git a/cppuhelper/qa/propertysetmixin/makefile.mk b/cppuhelper/qa/propertysetmixin/makefile.mk index 04aa2479c..be4cfc380 100644 --- a/cppuhelper/qa/propertysetmixin/makefile.mk +++ b/cppuhelper/qa/propertysetmixin/makefile.mk @@ -41,6 +41,11 @@ my_components = $(TARGET).cpp $(TARGET).java .INCLUDE: settings.mk +.IF "$(CROSS_COMPILING)"=="YES" +all: + @echo Nothing done when cross-compiling +.ENDIF + .IF "$(OS)" == "WNT" my_file = file:/// .ELSE diff --git a/cppuhelper/qa/unourl/makefile.mk b/cppuhelper/qa/unourl/makefile.mk index 4e46dd088..f48b724ee 100644 --- a/cppuhelper/qa/unourl/makefile.mk +++ b/cppuhelper/qa/unourl/makefile.mk @@ -35,6 +35,11 @@ ENABLE_EXCEPTIONS=TRUE .INCLUDE : settings.mk +.IF "$(CROSS_COMPILING)"=="YES" +all: + @echo Nothing done when cross-compiling +.ENDIF + CFLAGSCXX += $(CPPUNIT_CFLAGS) # BEGIN ---------------------------------------------------------------- diff --git a/cppuhelper/qa/weak/makefile.mk b/cppuhelper/qa/weak/makefile.mk index 5116886b6..789550497 100644 --- a/cppuhelper/qa/weak/makefile.mk +++ b/cppuhelper/qa/weak/makefile.mk @@ -33,6 +33,11 @@ ENABLE_EXCEPTIONS := TRUE .INCLUDE: settings.mk +.IF "$(CROSS_COMPILING)"=="YES" +all: + @echo Nothing done when cross-compiling +.ENDIF + CFLAGSCXX += $(CPPUNIT_CFLAGS) DLLPRE = # no leading "lib" on .so files |