summaryrefslogtreecommitdiff
path: root/cppunit
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-12-12 13:37:09 +0200
committerTor Lillqvist <tml@iki.fi>2012-12-12 13:39:17 +0200
commit94a1b9c46fc76126296b298aa5447e5217a69ee3 (patch)
treeaf975211cfe0b117f7a0bb8508bac3d6f49d9ef0 /cppunit
parent6c98ad71478cb72b51634b32d6e553ccaec30190 (diff)
Fix VS2012 build at least for me
Diffstat (limited to 'cppunit')
-rw-r--r--cppunit/ExternalProject_cppunit.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppunit/ExternalProject_cppunit.mk b/cppunit/ExternalProject_cppunit.mk
index b5abe41b3f26..02cccb38d58d 100644
--- a/cppunit/ExternalProject_cppunit.mk
+++ b/cppunit/ExternalProject_cppunit.mk
@@ -28,10 +28,10 @@ else
$(call gb_ExternalProject_get_state_target,cppunit,build) :
cd $(EXTERNAL_WORKDIR)/src/cppunit \
&& msbuild.exe cppunit_dll.vcxproj /p:Configuration=Release \
- $(if $(filter 110,$(VCVER)),/p:PlatformToolset=v110) \
+ $(if $(filter 110,$(VCVER)),/p:PlatformToolset=v110 /p:VisualStudioVersion=11.0) \
&& cd ../DllPlugInTester \
&& msbuild.exe DllPlugInTester.vcxproj /p:Configuration=Release \
- $(if $(filter 110,$(VCVER)),/p:PlatformToolset=v110) \
+ $(if $(filter 110,$(VCVER)),/p:PlatformToolset=v110 /p:VisualStudioVersion=11.0) \
&& touch $@
endif
else