| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2018-04-19T13:58:38
- #
- #-------------------------------------------------
- QT += core gui
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets network printsupport
- TARGET = ivmapmake_sharemem
- TEMPLATE = app
- QMAKE_LFLAGS += -no-pie
- # The following define makes your compiler emit warnings 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
- DEFINES += VV7_2
- # You can also make your code fail to compile if you use deprecated APIs.
- # In order to do so, uncomment the following line.
- # You can also select to disable deprecated APIs only up to a certain version of Qt.
- #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
- include(common/common.pri)
- SOURCES += \
- main.cpp \
- gps_collect.cpp \
- gnss_coordinate_convert.cpp \
- myview.cpp \
- ../../include/msgtype/gpsimu.pb.cc
- HEADERS += \
- gps_collect.h \
- gnss_coordinate_convert.h \
- myview.h \
- ../../include/msgtype/gpsimu.pb.h
- INCLUDEPATH += $$PWD/../../include/msgtype
- LIBS += -lprotobuf
- INCLUDEPATH += $$PWD/../../common/modulecomm/
- LIBS += -L$$PWD/../../../bin/ -lmodulecomm
- win32: INCLUDEPATH += C:/File/boost/boost_1_67_0
- win32: LIBS += -LC:/File/boost/boost_1_67_0/vc2017/lib -lboost_system-vc141-mt-x64-1_67 -lboost_thread-vc141-mt-x64-1_67
- unix:!macx: LIBS += -L$$PWD/./ -lboost_thread -lboost_system
- unix:LIBS += -lboost_thread -lboost_system -lboost_serialization
- #unix:LIBS += -lopencv_core -lopencv_highgui -lopencv_imgproc
- #unix:!macx: LIBS += -lprotobuf
- unix:!macx: INCLUDEPATH += $$PWD/.
- unix:!macx: DEPENDPATH += $$PWD/.
- #win32:DEPENDPATH += D:/boost
- #win32:INCLUDEPATH+= D:/boost
- #win32: LIBS += D:/boost/stage/lib/libboost_thread-vc140-mt-gd-x64-1_68.lib D:/boost/stage/lib/libboost_system-vc140-mt-gd-x64-1_68.lib \
- #D:/boost/stage/lib/libboost_date_time-vc140-mt-gd-x64-1_68.lib D:/boost/stage/lib/libboost_chrono-vc140-mt-gd-x64-1_68.lib \
- # D:/boost/stage/lib/libboost_filesystem-vc140-mt-gd-x64-1_68.lib D:/boost/stage/lib/libboost_iostreams-vc140-mt-gd-x64-1_68.lib \
- #D:/boost/stage/lib/libboost_serialization-vc140-mt-gd-x64-1_68.lib \
- #C:/Users/summer/Desktop/TestADC/ControlCAN.lib
- INCLUDEPATH += $$PWD/.
- DEPENDPATH += $$PWD/.
- FORMS +=
- DISTFILES += \
- timercopy.png
- RESOURCES += \
- image.qrc
|