Fulcrum/contrib/travis/windows.pc.script
Calin Culianu 30d87053fe Revert "Windows Travis CI: Try and install/use pkg-config to autodetect libzmq"
This reverts commit 10b07efb31.

It didn't work -- going back to the old bad way.
2021-02-07 16:16:27 +02:00

10 lines
368 B
Bash
Executable file

#!/bin/sh
set -e
export PATH=/C/tools/msys64/$TARGET_MINGW/bin:$PATH
LIBDIR="C:/tools/msys64/$TARGET_MINGW/lib"
INCDIR="C:/tools/msys64/$TARGET_MINGW/include"
qmake -makefile CONFIG+=release DEFINES+=ENABLE_TESTS LIBS+="-L${LIBDIR} -lzmq" INCLUDEPATH+="${INCDIR}" Fulcrum.pro
mingw32-make
mingw32-make install
./release/Fulcrum.exe -v
./release/Fulcrum.exe --test all