mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-19 13:18:32 +02:00
- New class: ZmqSubNotifier which only does something if libzmq was enabled at compile-time - Fulcrum.pro now tries to auto-detect libzmq using pkg-config (on unix). One can override this auto-detection with `LIBS=-L/path/to/zmqlibdir -lzmq` - App now compiles-in the commit hash used to build it (Unix only). Auto-detected on unix only. On Windows the commit hash must be specified as a DEFINE. - Added -v/--version CLI arg to print extended information about which libs the app was built against, including Fulcrum's own commit hash. - Updated static docker builds to link-in a statically built libzmq - App now prints what libs it contains / is using at startup to the log.
6 lines
108 B
Prolog
6 lines
108 B
Prolog
CONFIG += c++17
|
|
SOURCES = main.cpp
|
|
QT_CONFIG -= no-pkg-config
|
|
CONFIG += link_pkgconfig
|
|
PKGCONFIG += libzmq
|
|
|