gnss-sim/gnss-sim.pro

44 lines
968 B
Prolog

QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets concurrent
CONFIG += c++17
msvc{
QMAKE_CFLAGS += /utf-8
QMAKE_CXXFLAGS += /utf-8
}
# 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
INCLUDEPATH += \
$$PWD/3rdparty/uhd/include \
$$PWD/3rdparty/
SOURCES += \
gpssim.c \
main.cpp \
mainwindow.cpp \
uhd_device.cpp \
workThread.cpp
HEADERS += \
gpssim.h \
mainwindow.h \
uhd_device.h \
workThread.h
FORMS += \
mainwindow.ui
win32{
LIBS += -L$$PWD/3rdparty/uhd/lib -luhd -L$$PWD/3rdparty/lib64-msvc-14.3 -llibboost_thread-vc143-mt-gd-x64-1_86
}
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target