CatRadio/CatRadio.pro

65 wiersze
1.4 KiB
Prolog
Czysty Zwykły widok Historia

2022-03-12 19:30:51 +00:00
QT += core gui
2022-03-23 19:14:16 +00:00
QT += serialport
2022-03-12 19:30:51 +00:00
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
2022-11-22 20:47:32 +00:00
dialogcommand.cpp \
2022-03-12 19:30:51 +00:00
dialogconfig.cpp \
2022-11-22 20:47:32 +00:00
dialogradioinfo.cpp \
2022-03-12 19:30:51 +00:00
dialogsetup.cpp \
guidata.cpp \
main.cpp \
mainwindow.cpp \
rigcommand.cpp \
rigdaemon.cpp \
rigdata.cpp \
smeter.cpp \
submeter.cpp \
vfodisplay.cpp
HEADERS += \
2022-11-22 20:47:32 +00:00
dialogcommand.h \
2022-03-12 19:30:51 +00:00
dialogconfig.h \
2022-11-22 20:47:32 +00:00
dialogradioinfo.h \
2022-03-12 19:30:51 +00:00
dialogsetup.h \
guidata.h \
mainwindow.h \
rigcommand.h \
rigdaemon.h \
rigdata.h \
smeter.h \
submeter.h \
vfodisplay.h
FORMS += \
2022-11-22 20:47:32 +00:00
dialogcommand.ui \
2022-03-12 19:30:51 +00:00
dialogconfig.ui \
2022-11-22 20:47:32 +00:00
dialogradioinfo.ui \
2022-03-12 19:30:51 +00:00
dialogsetup.ui \
mainwindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
LIBS += -L$$PWD/hamlib/ -lhamlib
INCLUDEPATH += $$PWD/hamlib
2023-05-30 18:38:05 +00:00
# RESOURCES += theme/breeze.qrc
2022-11-19 20:13:20 +00:00
RESOURCES += qdarkstyle/dark/darkstyle.qrc
# RESOURCES += qdarkstyle/light/lightstyle.qrc
2024-03-17 17:13:15 +00:00
VERSION = 1.4.1
2022-03-12 19:30:51 +00:00
RC_ICONS = catradio.ico
QMAKE_LFLAGS += -no-pie