Skip to content

Commit

Permalink
Fix Travis all versions x32
Browse files Browse the repository at this point in the history
  • Loading branch information
APN-Pucky committed Nov 14, 2017
1 parent 43df691 commit 53f9794
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build/windows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ MXE_DIR=/usr/lib/mxe

MXE_TARGET=i686-w64-mingw32.static

${MXE_DIR}/usr/bin/${MXE_TARGET}-cmake . -Bbuild-dir -DVERSION:STRING="${TRAVIS_TAG}"
cmake --build build-dir
${MXE_DIR}/usr/bin/${MXE_TARGET}-cmake . -Bbuild-dir32 -DVERSION:STRING="${TRAVIS_TAG}"
cmake --build build-dir32

mv build-dir/tuo.exe $TUO_FILE_32
mv build-dir32/tuo.exe $TUO_FILE_32

MXE_TARGET=x86_64-w64-mingw32.static

${MXE_DIR}/usr/bin/${MXE_TARGET}-cmake . -Bbuild-dir -DVERSION:STRING="${TRAVIS_TAG}"
cmake --build build-dir
${MXE_DIR}/usr/bin/${MXE_TARGET}-cmake . -Bbuild-dir64 -DVERSION:STRING="${TRAVIS_TAG}"
cmake --build build-dir64

mv build-dir/tuo.exe $TUO_FILE_64
mv build-dir64/tuo.exe $TUO_FILE_64

set +xue

0 comments on commit 53f9794

Please sign in to comment.