mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-13 12:33:27 +02:00
10 lines
368 B
Bash
Executable file
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
|