2,新增“Apps”; 3,新增“Common”; 4,新增“FileList”; 5,新增“MediaX”; 6,新增“OpenSource”; 7,新增“Samples”; 8,新增“SoftwareBusinessLines”.
60 lines
1.5 KiB
Prolog
60 lines
1.5 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-11-22T15:21:24
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport webenginewidgets sql serialport
|
|
lessThan(QT_MAJOR_VERSION, 6): QT += webengine
|
|
|
|
TARGET = BaiduMap
|
|
TEMPLATE = app
|
|
|
|
DESTDIR=$$PWD/./bin
|
|
|
|
INCLUDEPATH += $$PWD/./SQLite3/include/
|
|
|
|
SOURCES += main.cpp\
|
|
AlgorithmParamsPanel.cpp \
|
|
DeviceStatusPanel.cpp \
|
|
WaterfallChart.cpp \
|
|
mainwindow.cpp \
|
|
JSonDealer.cpp \
|
|
DataParser.cpp \
|
|
$$PWD/./Web/bridge.cpp \
|
|
$$PWD/./SQLite3/SQLite3Manager.cpp \
|
|
$$PWD/./QCustomPlot/qcustomplot.cpp \
|
|
|
|
HEADERS += mainwindow.h \
|
|
AlgorithmParamsPanel.h \
|
|
DeviceStatusPanel.h \
|
|
JSonDealer.h \
|
|
DataParser.h \
|
|
$$PWD/./Web/bridge.h \
|
|
$$PWD/./SQLite3/include/sqlite3.h \
|
|
$$PWD/./SQLite3/include/sqlite3ext.h \
|
|
$$PWD/./SQLite3/SQLite3Manager.h \
|
|
$$PWD/./QCustomPlot/qcustomplot.h \
|
|
WaterfallChart.h
|
|
|
|
FORMS += mainwindow.ui \
|
|
AlgorithmParamsPanel.ui \
|
|
DeviceStatusPanel.ui \
|
|
WaterfallChart.ui
|
|
|
|
#文件采用utf-8编码
|
|
msvc {
|
|
QMAKE_CFLAGS += /utf-8
|
|
QMAKE_CXXFLAGS += /utf-8
|
|
}
|
|
|
|
win32{
|
|
contains(DEFINES,WIN64){
|
|
LIBS += -L$$PWD/SQLite3/lib/x64/ -lsqlite3
|
|
#LIBS += -L$$PWD/MySQL/ -llibmysql
|
|
}else{
|
|
LIBS += -L$$PWD/SQLite3/lib/x86/ -lsqlite3
|
|
}
|
|
}
|