diff options
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/build.sh | 14 | ||||
-rwxr-xr-x | .travis/build_boost.sh | 18 |
2 files changed, 16 insertions, 16 deletions
diff --git a/.travis/build.sh b/.travis/build.sh index 5cc8f35..dbf6fb6 100755 --- a/.travis/build.sh +++ b/.travis/build.sh @@ -17,14 +17,14 @@ cd -- "$HOME" mkdir -- cmake cd -- cmake/ -cmake \ - -D "CMAKE_BUILD_TYPE=$build_type" \ - -D "CMAKE_C_COMPILER=$cc" \ - -D "CMAKE_CXX_COMPILER=$cxx" \ - -D "BOOST_ROOT=$boost_dir" \ +cmake \ + -D "CMAKE_BUILD_TYPE=$build_type" \ + -D "CMAKE_C_COMPILER=$cc" \ + -D "CMAKE_CXX_COMPILER=$cxx" \ + -D "BOOST_ROOT=$boost_dir" \ -D "BOOST_LIBRARYDIR=$boost_librarydir" \ - -D Boost_USE_STATIC_LIBS=ON \ - -D CMAKE_SYSTEM_NAME=Windows \ + -D Boost_USE_STATIC_LIBS=ON \ + -D CMAKE_SYSTEM_NAME=Windows \ "$TRAVIS_BUILD_DIR" cmake --build . diff --git a/.travis/build_boost.sh b/.travis/build_boost.sh index 2d12dc8..9efb832 100755 --- a/.travis/build_boost.sh +++ b/.travis/build_boost.sh @@ -22,14 +22,14 @@ echo "using gcc : : $cxx ;" > "user-config-$arch.jam" address_model=32 [ "$arch" = x64 ] && address_model=64 -./b2 \ - toolset=gcc \ - "address-model=$address_model" \ - target-os=windows \ - link=static \ - variant="$build_type" \ - "--stagedir=stage/$arch/$build_type" \ +./b2 \ + toolset=gcc \ + "address-model=$address_model" \ + target-os=windows \ + link=static \ + variant="$build_type" \ + "--stagedir=stage/$arch/$build_type" \ "--user-config=user-config-$arch.jam" \ - --with-filesystem \ - --with-program_options \ + --with-filesystem \ + --with-program_options \ --with-system |