👷 additional flags for MSVC #464
To test a fix for issue #464 (not yet implemented), we first need to have an MSVC build with “/permissive- /std:c++latest /utf-8”.
This commit is contained in:
parent
d4e49873b7
commit
9d9c5216d7
1 changed files with 5 additions and 1 deletions
|
@ -8,13 +8,17 @@ os:
|
||||||
- Visual Studio 2015
|
- Visual Studio 2015
|
||||||
- Visual Studio 2017
|
- Visual Studio 2017
|
||||||
|
|
||||||
|
environment:
|
||||||
|
- additional_flags: "${CMAKE_CXXFLAGS}"
|
||||||
|
- additional_flags: "${CMAKE_CXXFLAGS} /permissive- /std:c++latest /utf-8"
|
||||||
|
|
||||||
init: []
|
init: []
|
||||||
|
|
||||||
install: []
|
install: []
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- IF "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2015" ( SET GEN="Visual Studio 14 2015") ELSE (SET GEN="Visual Studio 15 2017")
|
- IF "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2015" ( SET GEN="Visual Studio 14 2015") ELSE (SET GEN="Visual Studio 15 2017")
|
||||||
- cmake . -G%GEN%
|
- cmake . -G%GEN% -DCMAKE_CXX_FLAGS=%additional_flags%
|
||||||
- cmake --build . --config Release
|
- cmake --build . --config Release
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
|
|
Loading…
Reference in a new issue