aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-15 13:25:33 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-15 13:34:11 +0300
commit35968382a636d5365ee8b03fd101e4ac414f4dc3 (patch)
tree8854d3ea849c8232212ea2654a693864fe94e6cb /.travis.yml
parentAppVeyor/Travis: switch to cmake/build (diff)
downloadaes-tools-35968382a636d5365ee8b03fd101e4ac414f4dc3.tar.gz
aes-tools-35968382a636d5365ee8b03fd101e4ac414f4dc3.zip
update cmake-common
Diffstat (limited to '')
-rw-r--r--.travis.yml24
1 files changed, 13 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml
index 657cbbf..fe372b2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,19 +19,21 @@ env:
before_script:
- |-
- ./cmake/build/boost/build_travis.sh \
- target-os=windows \
+ ./cmake/ci/boost/build_travis.py \
+ -- \
+ link=static \
+ target-os=windows \
--user-config="$TRAVIS_BUILD_DIR/cmake/toolchains/boost/mingw-w64-$platform.jam" \
- --with-filesystem \
- --with-program_options \
+ --with-filesystem \
+ --with-program_options \
--with-system
script:
- |-
- ./cmake/build/build_travis.py \
- --configuration "$configuration" \
- --install "$HOME/install" \
- --boost "$HOME/boost_1_71_0" \
- --toolchain "./cmake/toolchains/mingw-w64-$platform.cmake" \
- --boost-librarydir "$HOME/boost_1_71_0/stage/$platform/${configuration,,}/lib" \
- -- -DCMAKE_SYSTEM_NAME=Windows
+ ./cmake/ci/build_travis.py \
+ --install "$HOME/install" \
+ -- \
+ -D "BOOST_ROOT=$HOME/boost_1_71_0" \
+ -D "BOOST_LIBRARYDIR=$HOME/boost_1_71_0/stage/$platform/$configuration/lib" \
+ -D "CMAKE_TOOLCHAIN_FILE=cmake/toolchains/mingw-w64-$platform.cmake" \
+ -D CMAKE_SYSTEM_NAME=Windows