-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqvfo.pro
75 lines (54 loc) · 1.52 KB
/
qvfo.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#-------------------------------------------------
#
# Project created by QtCreator 2014-07-12T23:52:42
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qvfo
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
freqctrl.cpp \
settingsdialog.cpp \
vna_serial.cpp \
dds_dg8saq_usb.cpp \
usb_backend.cpp
HEADERS += mainwindow.h \
freqctrl.h \
settingsdialog.h \
dds.h \
vna_serial.h \
dds_dg8saq_usb.h \
usb_backend.h
FORMS += mainwindow.ui \
settingsdialog.ui
TRANSLATIONS = qvfo_pl.ts
RESOURCES += icon.qrc
unix:CONFIG += qtserialport link_pkgconfig
unix:PKGCONFIG += libusb-1.0
unix:INCLUDEPATH += /usr/include/QtAddOnSerialPort
unix:LIBS += -lSerialPort
DISTFILES += qvfo_pl.qm
# Install
isEmpty(PREFIX) {
PREFIX = /usr/local
}
BINDIR = $$PREFIX/bin
DATADIR = $$PREFIX/share
DEFINES += APP_DATA_DIR=\"$$PREFIX/share/qvfo\"
bin.files = qvfo
bin.path = $$PREFIX/bin
desktop.files = qvfo.desktop
desktop.path = $$DATADIR/applications
language.files = qvfo_pl.qm
language.path = $$DATADIR/qvfo
icon16.files = icons/i16/qvfo.png
icon16.path = $$DATADIR/icons/hicolor/16x16/apps
icon32.files = icons/i32/qvfo.png
icon32.path = $$DATADIR/icons/hicolor/32x32/apps
icon48.files = icons/i48/qvfo.png
icon48.path = $$DATADIR/icons/hicolor/48x48/apps
icon64.files = icons/i64/qvfo.png
icon64.path = $$DATADIR/icons/hicolor/64x64/apps
INSTALLS += bin desktop icon16 icon32 icon48 icon64 language