summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/regtools/qeditor/qeditor.pro10
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/regtools/qeditor/qeditor.pro b/utils/regtools/qeditor/qeditor.pro
index 771b60b61c..39b6c76cc9 100644
--- a/utils/regtools/qeditor/qeditor.pro
+++ b/utils/regtools/qeditor/qeditor.pro
@@ -6,6 +6,11 @@ SOURCES += main.cpp mainwindow.cpp regtab.cpp backend.cpp analyser.cpp \
6 std_analysers.cpp settings.cpp utils.cpp regdisplaypanel.cpp regedit.cpp 6 std_analysers.cpp settings.cpp utils.cpp regdisplaypanel.cpp regedit.cpp
7LIBS += -L../lib/ -lsocdesc -lxml2 7LIBS += -L../lib/ -lsocdesc -lxml2
8INCLUDEPATH += ../lib/ ../../hwstub/lib 8INCLUDEPATH += ../lib/ ../../hwstub/lib
9DEPENDPATH += ../
10
11libsocdesc.commands = cd ../lib && make
12QMAKE_EXTRA_TARGETS += libsocdesc
13PRE_TARGETDEPS += libsocdesc
9 14
10VERSION = 2.0.3 15VERSION = 2.0.3
11 16
@@ -14,7 +19,12 @@ DEFINES += APP_VERSION=\\\"$$VERSION\\\"
14unix { 19unix {
15 !nohwstub { 20 !nohwstub {
16 message("Use 'qmake -config nohwstub' if you want to disable hwstub support") 21 message("Use 'qmake -config nohwstub' if you want to disable hwstub support")
22 libhwstub.commands = cd ../../hwstub/lib && make
23 QMAKE_EXTRA_TARGETS += libhwstub
24 PRE_TARGETDEPS += libhwstub
25
17 LIBS += -L../../hwstub/lib -lhwstub 26 LIBS += -L../../hwstub/lib -lhwstub
27 DEPENDPATH += ../../hwstub
18 DEFINES += HAVE_HWSTUB 28 DEFINES += HAVE_HWSTUB
19 CONFIG += link_pkgconfig 29 CONFIG += link_pkgconfig
20 PKGCONFIG += libusb-1.0 30 PKGCONFIG += libusb-1.0