Skip to content

Commit

Permalink
Add windows support
Browse files Browse the repository at this point in the history
References #1
  • Loading branch information
Riccardo Ferrazzo committed Nov 6, 2015
1 parent fd227d8 commit ed44ff8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
9 changes: 9 additions & 0 deletions zmq.pri
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,12 @@ mac {
} else:unix {
LIBS += -lzmq
}
else:win32-msvc*{
## READ THIS PLEASE
## Add your path and Lib here for windows Make sure that if you are using the ming you change the above part (win32-msvc2013)
## EXAMPLE:

## msvc2013
LIBS += -L"C:/Program Files (x86)/ZeroMQ 4.0.4/lib/" -llibzmq-v120-mt-4_0_4
INCLUDEPATH += "C:/Program Files (x86)/ZeroMQ 4.0.4/include"
}
11 changes: 5 additions & 6 deletions zmqml/zmqml.pro
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,9 @@ OTHER_FILES = qmldir
}

qmldir.files = qmldir
unix {
installPath = $$[QT_INSTALL_QML]/$$replace(uri, \\., /)
qmldir.path = $$installPath
target.path = $$installPath
INSTALLS += target qmldir
}

installPath = $$[QT_INSTALL_QML]/$$replace(uri, \\., /)
qmldir.path = $$installPath
target.path = $$installPath
INSTALLS += target qmldir

0 comments on commit ed44ff8

Please sign in to comment.