[cpp-msbuild] branch master updated: Fix CXXFLAGS addition

Scott Cantor cantor.2 at osu.edu
Wed Aug 30 10:44:23 EDT 2017


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository cpp-msbuild.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-msbuild.git;a=commit;h=ead7e3db606cf600969e24f247845fe32c43d3ed

The following commit(s) were added to refs/heads/master by this push:
       new  ead7e3d   Fix CXXFLAGS addition
ead7e3d is described below

commit ead7e3db606cf600969e24f247845fe32c43d3ed
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Aug 30 10:44:18 2017 -0400

    Fix CXXFLAGS addition
---
 dependencies/xerces.bat | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/dependencies/xerces.bat b/dependencies/xerces.bat
index 293e1a2..e0e7913 100644
--- a/dependencies/xerces.bat
+++ b/dependencies/xerces.bat
@@ -2,13 +2,11 @@ cd /d %ROOT_DIR%%XERCES_DIR%
 rd/s/q buildx86\%MsVCVersion% buildx64\%MsVCVersion% install32\%MsVCVersion% install64\%MsVCVersion%
 mkdir buildx86\%MsVCVersion%
 cd buildx86\%MsVCVersion%
-cmake -G "Visual Studio 15 2017" -DCMAKE_CXX_FLAGS=/MP -DCMAKE_INSTALL_PREFIX=%ROOT_DIR%%XERCES_DIR%\install32\%MsVCVersion% ..\..
+set CXXFLAGS=/MP
+cmake -G "Visual Studio 15 2017" -DCMAKE_INSTALL_PREFIX=%ROOT_DIR%%XERCES_DIR%\install32\%MsVCVersion% ..\..
 cd ..\..
 mkdir buildx64\%MsVCVersion%
 cd buildx64\%MsVCVersion%
-cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_CXX_FLAGS=/MP -DCMAKE_INSTALL_PREFIX=%ROOT_DIR%%XERCES_DIR%\install64\%MsVCVersion% ..\..
+cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_INSTALL_PREFIX=%ROOT_DIR%%XERCES_DIR%\install64\%MsVCVersion% ..\..
 cd ..\..
-
-
-
-
+set CXXFLAGS=

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list