Rename this directory to avoid binary clash

This commit is contained in:
Justin Hammond 2019-07-01 17:31:00 +08:00
parent 77ddc7e6ae
commit 38f0d765f9
18 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1,46 @@
QT += widgets remoteobjects testlib
TARGET = ../simpleclient
CONFIG += silent
DEFINES += remote
unix {
QMAKE_POST_LINK += "if [ ! -e config ]; then ln -s $$OZW_LIB_PATH/config config; fi"
}
win32 {
RC_ICONS += res/ozw_logo.ico
}
FORMS += \
bitsetwidget.ui \
mainwindow.ui \
startup.ui
SOURCES = main.cpp \
bitsetwidget.cpp \
mainwindow.cpp \
qtozw_itemdelegate.cpp \
startup.cpp
HEADERS += \
bitsetwidget.h \
mainwindow.h \
qtozw_itemdelegate.h \
startup.h
RESOURCES += \
simpleclient.qrc
LIBS += -lresolv -L../qt-openzwave/ -lqt-openzwave
INCLUDEPATH += ../qt-openzwave/include/
macx {
ICON = res/ozw_logo.icns
LIBOZW.files = ../../open-zwave/libopenzwave-1.6.dylib ../qt-openzwave/libqt-openzwave.1.dylib
LIBOZW.path = Contents/Frameworks/
QMAKE_BUNDLE_DATA += BUNDLE LIBOZW
QMAKE_POST_LINK=$$top_srcdir/updaterpath.sh $(TARGET)
}
include(../qt-openzwave.pri)