Amaury Pouly | c323381 | 2013-08-21 20:16:26 +0200 | [diff] [blame] | 1 | QT += widgets |
| 2 | |
Amaury Pouly | 4356666 | 2014-04-07 11:28:04 +0200 | [diff] [blame] | 3 | HEADERS += mainwindow.h backend.h regtab.h analyser.h settings.h \ |
Dmitry Gamza | 440ff95 | 2014-05-12 09:59:24 +0400 | [diff] [blame] | 4 | std_analysers.h utils.h regdisplaypanel.h regedit.h |
Amaury Pouly | 4356666 | 2014-04-07 11:28:04 +0200 | [diff] [blame] | 5 | SOURCES += main.cpp mainwindow.cpp regtab.cpp backend.cpp analyser.cpp \ |
Dmitry Gamza | 440ff95 | 2014-05-12 09:59:24 +0400 | [diff] [blame] | 6 | std_analysers.cpp settings.cpp utils.cpp regdisplaypanel.cpp regedit.cpp |
Amaury Pouly | c323381 | 2013-08-21 20:16:26 +0200 | [diff] [blame] | 7 | LIBS += -L../lib/ -lsocdesc -lxml2 |
Amaury Pouly | 0e0c610 | 2014-02-04 00:18:51 +0100 | [diff] [blame] | 8 | INCLUDEPATH += ../lib/ ../../hwstub/lib |
Amaury Pouly | c323381 | 2013-08-21 20:16:26 +0200 | [diff] [blame] | 9 | |
Amaury Pouly | 88053b8 | 2014-10-22 17:56:13 +0200 | [diff] [blame] | 10 | VERSION = 2.0.3 |
Amaury Pouly | dc869e7 | 2014-05-02 00:32:41 +0200 | [diff] [blame] | 11 | |
| 12 | DEFINES += APP_VERSION=\\\"$$VERSION\\\" |
| 13 | |
Amaury Pouly | 0e0c610 | 2014-02-04 00:18:51 +0100 | [diff] [blame] | 14 | unix { |
| 15 | !nohwstub { |
| 16 | message("Use 'qmake -config nohwstub' if you want to disable hwstub support") |
| 17 | LIBS += -L../../hwstub/lib -lhwstub |
| 18 | DEFINES += HAVE_HWSTUB |
| 19 | CONFIG += link_pkgconfig |
| 20 | PKGCONFIG += libusb-1.0 |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | CONFIG += debug |