diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-08 13:59:41 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-08 14:42:05 +0300 |
commit | d5ef1eac7f52771108953599bd821caa03637b0e (patch) | |
tree | 64f1e713b7eaf0d8c4a37a768e1ad23a1ba328ce /appveyor.yml | |
parent | Travis: verify executable file bitness (diff) | |
download | cmake-common-d5ef1eac7f52771108953599bd821caa03637b0e.tar.gz cmake-common-d5ef1eac7f52771108953599bd821caa03637b0e.zip |
cmake/build/ci: fix import errors
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index c95a9c1..3218224 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -95,5 +95,16 @@ build_script: - ps: .\.ci\verify_arch.ps1 -Path C:\install\boost_1_72_0\bin\foo.exe -Arch x64 - echo Boost 1.65.0 - - '"%python_exe%" ./boost/build/ci/appveyor.py --link static -- --with-filesystem --with-program_options' + + - '"%python_exe%" ./boost/build/ci/appveyor.py --link static -- runtime-link=static --with-filesystem --with-program_options' - dir /a-D /S /B C:\boost_1_65_0\stage + + - >- + set "APPVEYOR_BUILD_FOLDER=%APPVEYOR_BUILD_FOLDER%\cmake\examples\boost" && + "%python_exe%" ./cmake/build/ci/appveyor.py + --install C:\install\boost_1_65_0 + -- + -D BOOST_ROOT=C:\boost_1_65_0 + -D BOOST_LIBRARYDIR=C:\boost_1_65_0\stage\x64\lib + - C:\install\boost_1_65_0\bin\foo.exe + - ps: .\.ci\verify_arch.ps1 -Path C:\install\boost_1_65_0\bin\foo.exe -Arch x64 |