Merge pull request #171 from arvidn/msvc-14-fix

msvc-14 fix
This commit is contained in:
Arvid Norberg 2015-09-20 14:34:30 -04:00
commit 92d05d1085
2 changed files with 5 additions and 4 deletions

View File

@ -92,10 +92,7 @@ install:
- echo %BOOST_ROOT%
- echo %BOOST_BUILD_PATH%
- set PATH=%PATH%;%BOOST_BUILD_PATH%\src\engine\bin.ntx86
- 'echo using msvc : 10.0 ; >%HOMEDRIVE%%HOMEPATH%\user-config.jam'
- 'echo using msvc : 12.0 ; >>%HOMEDRIVE%%HOMEPATH%\user-config.jam'
- 'echo using msvc : 14.0 : : ^<include^>\"C:\Program Files (x86)\Windows Kits\10\Include\10.0.10069.0\ucrt\" ; >>%HOMEDRIVE%%HOMEPATH%\user-config.jam'
- echo using gcc ; >>%HOMEDRIVE%%HOMEPATH%\user-config.jam
- copy appveyor\user-config.jam %HOMEDRIVE%%HOMEPATH%
- type %HOMEDRIVE%%HOMEPATH%\user-config.jam
- cd %ROOT_DIRECTORY%
- set PATH=%PATH%;c:\Mingw\bin

4
appveyor/user-config.jam Normal file
View File

@ -0,0 +1,4 @@
using msvc : 10.0 ;
using msvc : 12.0 ;
using msvc : 14.0 : : <include>"C:\Program Files (x86)\Windows Kits\10\Include\10.0.10069.0\ucrt" ;
using gcc ;