From bbad0a0a7063a84650e60500855228969678d8b5 Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Fri, 14 May 2021 19:38:31 -0400 Subject: [PATCH] Added Qt pro file --- RadioTuner.pro | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 RadioTuner.pro diff --git a/RadioTuner.pro b/RadioTuner.pro new file mode 100644 index 0000000..6bf3215 --- /dev/null +++ b/RadioTuner.pro @@ -0,0 +1,16 @@ +TEMPLATE = app +TARGET = RadioTuner +INCLUDEPATH += . + +# The following define makes your compiler warn you if you use any +# feature of Qt which has been marked as deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS + +# Input +HEADERS += client.h +SOURCES += client.cpp main.cpp +RESOURCES += qml.qrc + +QT += network qml quick