-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10b6066
commit 5a684f3
Showing
29 changed files
with
6,271 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
QT += core gui | ||
|
||
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 += \ | ||
dialogconfig.cpp \ | ||
dialogsetup.cpp \ | ||
guidata.cpp \ | ||
main.cpp \ | ||
mainwindow.cpp \ | ||
rigcommand.cpp \ | ||
rigdaemon.cpp \ | ||
rigdata.cpp \ | ||
smeter.cpp \ | ||
submeter.cpp \ | ||
vfodisplay.cpp | ||
|
||
HEADERS += \ | ||
dialogconfig.h \ | ||
dialogsetup.h \ | ||
guidata.h \ | ||
mainwindow.h \ | ||
rigcommand.h \ | ||
rigdaemon.h \ | ||
rigdata.h \ | ||
smeter.h \ | ||
submeter.h \ | ||
vfodisplay.h | ||
|
||
FORMS += \ | ||
dialogconfig.ui \ | ||
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/ -llibhamlib | ||
INCLUDEPATH += $$PWD/hamlib | ||
|
||
VERSION = 1.0.0 | ||
|
||
RC_ICONS = catradio.ico |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.