DSRemote/dsremote.pro

110 wiersze
2.4 KiB
Prolog
Czysty Zwykły widok Historia

contains(QT_MAJOR_VERSION, 4) {
LIST = 0 1 2 3 4 5 6
for(a, LIST):contains(QT_MINOR_VERSION, $$a):error("This project needs Qt4 version >= 4.7.1 or Qt5 version >= 5.5.1")
contains(QT_MINOR_VERSION, 7) {
LIST = 0
for(a, LIST):contains(QT_PATCH_VERSION, $$a):error("This project needs Qt4 version >= 4.7.1 or Qt5 version >= 5.5.1")
}
}
contains(QT_MAJOR_VERSION, 5) {
LIST = 0 1 2 3 4
for(a, LIST):contains(QT_MINOR_VERSION, $$a):error("This project needs Qt4 version >= 4.7.1 or Qt5 version >= 5.5.1")
contains(QT_MINOR_VERSION, 5) {
LIST = 0
for(a, LIST):contains(QT_PATCH_VERSION, $$a):error("This project needs Qt4 version >= 4.7.1 or Qt5 version >= 5.5.1")
}
}
TEMPLATE = app
TARGET = dsremote
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += qt
CONFIG += warn_on
CONFIG += release
CONFIG += static
CONFIG += largefile
QT += widgets
2015-06-27 14:42:01 +00:00
QT += network
QMAKE_CXXFLAGS += -Wextra -Wshadow -Wformat-nonliteral -Wformat-security -Wtype-limits -Wfatal-errors
OBJECTS_DIR = ./objects
MOC_DIR = ./moc
HEADERS += global.h
HEADERS += mainwindow.h
HEADERS += about_dialog.h
HEADERS += utils.h
2015-06-27 09:04:41 +00:00
HEADERS += connection.h
HEADERS += tmc_dev.h
2015-06-28 09:30:25 +00:00
HEADERS += tmc_lan.h
HEADERS += tled.h
HEADERS += edflib.h
HEADERS += signalcurve.h
2015-06-02 14:20:56 +00:00
HEADERS += settings_dialog.h
HEADERS += screen_thread.h
2016-01-04 13:20:26 +00:00
HEADERS += third_party/kiss_fft/kiss_fft.h
HEADERS += third_party/kiss_fft/_kiss_fft_guts.h
HEADERS += third_party/kiss_fft/kiss_fftr.h
SOURCES += main.cpp
SOURCES += mainwindow.cpp
2015-06-04 15:24:31 +00:00
SOURCES += mainwindow_constr.cpp
SOURCES += timer_handlers.cpp
SOURCES += save_data.cpp
SOURCES += interface.cpp
SOURCES += about_dialog.cpp
SOURCES += utils.c
2015-06-27 09:04:41 +00:00
SOURCES += connection.cpp
SOURCES += tmc_dev.c
2015-09-01 17:08:30 +00:00
SOURCES += tmc_lan.c
SOURCES += tled.cpp
SOURCES += edflib.c
SOURCES += signalcurve.cpp
2015-06-02 14:20:56 +00:00
SOURCES += settings_dialog.cpp
SOURCES += screen_thread.cpp
2016-01-04 13:20:26 +00:00
SOURCES += third_party/kiss_fft/kiss_fft.c
SOURCES += third_party/kiss_fft/kiss_fftr.c
RESOURCES = images.qrc
2015-05-30 12:40:20 +00:00
target.path = /usr/bin
target.files = dsremote
INSTALLS += target
icon_a.path = /usr/share/icons
icon_a.files = images/r.png
INSTALLS += icon_a
icon_b.path += /usr/share/pixmaps
icon_b.files = images/r.png
INSTALLS += icon_b
icon_c.path += /usr/share/icons/hicolor/48x48/apps
icon_c.files = images/r.png
INSTALLS += icon_c
icon_d.path += /usr/share/icons/hicolor/48x48/mimetypes
icon_d.files = images/r.png
INSTALLS += icon_d
desktop_link.path += /usr/share/applications
desktop_link.files += install/dsremote.desktop
INSTALLS += desktop_link