123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2018-12-14T18:35:51
- #
- #-------------------------------------------------
- QT -= gui
- CONFIG += c++11 console
- CONFIG -= app_bundle
- QMAKE_LFLAGS += -no-pie
- #QMAKE_LFLAGS += -static
- #QMAKE_LFLAGS += -static-libgcc -static-libstdc++
- # 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
- # 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
- SOURCES += \
- ndsprocmain.cpp \
- TinyXML/tinystr.cpp \
- TinyXML/tinyxml.cpp \
- TinyXML/tinyxmlerror.cpp \
- TinyXML/tinyxmlparser.cpp \
- const.cpp \
- fresnl.cpp \
- polevl.c \
- function/ndsdataproc.cpp \
- function/circlefitting.cpp \
- function/geofit.cpp \
- gnss_coordinate_convert.cpp
- !include(../../../include/common.pri ) {
- error( "Couldn't find the common.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/xodr/xodrfunc
- INCLUDEPATH += $$PWD/function
- unix:INCLUDEPATH += /usr/include/eigen3
- win32:INCLUDEPATH += D:\File\soft\eigen
- DEFINES += NOTINPILOT
- DEFINES += INNDSPROC
- DISTFILES += \
- TinyXML/TinyXML.pri
- HEADERS += \
- TinyXML/tinystr.h \
- TinyXML/tinyxml.h \
- function/ndsdataproc.h \
- function/circlefitting.h \
- function/geofit.h \
- gnss_coordinate_convert.h
|