Skip to content

Commit

Permalink
Add zmqml_static.pri for static inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
Riccardo Ferrazzo committed Jun 2, 2015
1 parent 6557d7a commit 68bed96
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions zmqml_static.pri
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

INCLUDEPATH += $$PWD/zmqml

mac {
# brew install zeromq
INCLUDEPATH += /usr/local/Cellar/zeromq/4.0.5_2/include
LIBS += -L/usr/local/lib -lzmq
} else:unix {
LIBS += -lzmq
}

SOURCES += \
$$PWD/zmqml/zmqcontext.cpp \
$$PWD/zmqml/zmqsocket.cpp \
$$PWD/zmqml/remotemethod.cpp \
$$PWD/zmqml/zmqrpcsocket.cpp \
$$PWD/zmqml/bytearraytools.cpp \
$$PWD/zmqml/zmqml_plugin.cpp \

HEADERS += \
$$PWD/zmqml/zmqcontext.h \
$$PWD/zmqml/zmqsocket.h \
$$PWD/zmqml/remotemethod.h \
$$PWD/zmqml/zmqrpcsocket.h \
$$PWD/zmqml/bytearraytools.h \
$$PWD/zmqml/zmqml_plugin.h

0 comments on commit 68bed96

Please sign in to comment.