Travis: Add a MinGW cross compilation test
This commit is contained in:
parent
173f16ab55
commit
687997c410
17
.travis.yml
17
.travis.yml
@ -56,3 +56,20 @@ script:
|
|||||||
- cmake .. ${EXTRA_CMAKE_OPTS}
|
- cmake .. ${EXTRA_CMAKE_OPTS}
|
||||||
- make VERBOSE=1
|
- make VERBOSE=1
|
||||||
- ctest -V
|
- ctest -V
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
# Windows MinGW cross compile on Linux
|
||||||
|
- os: linux
|
||||||
|
dist: xenial
|
||||||
|
compiler: mingw
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- ninja-build
|
||||||
|
- gcc-mingw-w64-x86-64
|
||||||
|
- g++-mingw-w64-x86-64
|
||||||
|
script:
|
||||||
|
- mkdir build && cd build
|
||||||
|
- CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_BUILD_WITH_INSTALL_RPATH=on
|
||||||
|
- ninja -v
|
||||||
|
Loading…
Reference in New Issue
Block a user