From 303f107618e27d536027525bcc1179e028ee4737 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20R=C3=B6ssler?= Date: Sun, 4 May 2014 18:00:34 +0200 Subject: [PATCH] added pri file to make inclusion to other Qt projects easier --- nzmqt.pri | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 nzmqt.pri diff --git a/nzmqt.pri b/nzmqt.pri new file mode 100644 index 0000000..4254645 --- /dev/null +++ b/nzmqt.pri @@ -0,0 +1,18 @@ +# Include this file into your project to build and link +# the nzmqt library into you application + +# This define will "move" nzmqt class method +# implementations to nzmqt.cpp file. +DEFINES += NZMQT_LIB + +SOURCES += \ + $$PWD/src/nzmqt/nzmqt.cpp + +HEADERS += \ + $$PWD/include/nzmqt/global.hpp \ + $$PWD/include/nzmqt/nzmqt.hpp \ + $$PWD/include/nzmqt/impl.hpp + +INCLUDEPATH += \ + $$PWD/include \ + $$PWD/3rdparty/cppzmq \ No newline at end of file