1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- 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 += \
- ../../common/common/math/gnss_coordinate_convert.cpp \
- ../../include/msgtype/collectveh.pb.cc \
- ../../include/msgtype/gpsimu.pb.cc \
- ../map_lanetoxodr/TinyXML/tinystr.cpp \
- ../map_lanetoxodr/TinyXML/tinyxml.cpp \
- ../map_lanetoxodr/TinyXML/tinyxmlerror.cpp \
- ../map_lanetoxodr/TinyXML/tinyxmlparser.cpp \
- ../map_lanetoxodr/autoconnect.cpp \
- ../map_lanetoxodr/circlefitting.cpp \
- ../map_lanetoxodr/const.cpp \
- ../map_lanetoxodr/fresnl.cpp \
- ../map_lanetoxodr/geofit.cpp \
- ../map_lanetoxodr/polevl.c \
- collectconvert.cpp \
- commif.cpp \
- dialogconvert.cpp \
- editwin.cpp \
- lineitem.cpp \
- main.cpp \
- mainwindow.cpp \
- myview.cpp
- HEADERS += \
- ../../common/common/math/gnss_coordinate_convert.h \
- ../../include/msgtype/collectveh.pb.h \
- ../../include/msgtype/gpsimu.pb.h \
- ../map_lanetoxodr/TinyXML/tinystr.h \
- ../map_lanetoxodr/TinyXML/tinyxml.h \
- ../map_lanetoxodr/autoconnect.h \
- ../map_lanetoxodr/circlefitting.h \
- ../map_lanetoxodr/geofit.h \
- collectconvert.h \
- commif.h \
- dialogconvert.h \
- editwin.h \
- lineitem.h \
- mainwindow.h \
- myview.h
- FORMS += \
- dialogconvert.ui \
- editwin.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
- !include(../../../include/common.pri ) {
- error( "Couldn't find the common.pri file!" )
- }
- !include(../../../include/ivprotobuf.pri ) {
- error( "Couldn't find the ivprotobuf.pri file!" )
- }
- !include(../../common/common/xodr/OpenDrive/OpenDrive.pri ) {
- error( "Couldn't find the OpenDrive.pri file!" )
- }
- !include(../../common/common/xodr/xodrfunc/xodrfunc.pri ) {
- error( "Couldn't find the xodrfunc.pri file!" )
- }
- INCLUDEPATH += $$PWD/../../common/common/xodr
- INCLUDEPATH += $$PWD/../../common/common/license
- INCLUDEPATH += $$PWD/../../common/common/xodr/xodrfunc
- INCLUDEPATH += ../../common/common/math
- INCLUDEPATH += ../map_lanetoxodr
- unix:INCLUDEPATH += /usr/include/eigen3
- win32:INCLUDEPATH += D:\File\soft\eigen
- RESOURCES += \
- editwin.qrc
- DISTFILES += \
- ../map_lanetoxodr/TinyXML/TinyXML.pri
|