123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2019-08-23T15:28:22
- #
- #-------------------------------------------------
- QT += core gui
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- TARGET = adcxodrviewer
- TEMPLATE = app
- CONFIG+= c++11
- DEFINES += XODRViewer
- # 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
- QMAKE_LFLAGS += -no-pie
- # 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 += \
- filedialogextern.cpp \
- ivxodrtool.cpp \
- main.cpp \
- roaddigit.cpp \
- myview.cpp \
- OpenDrive/Junction.cpp \
- OpenDrive/Lane.cpp \
- OpenDrive/ObjectSignal.cpp \
- OpenDrive/OpenDrive.cpp \
- OpenDrive/OpenDriveXmlParser.cpp \
- OpenDrive/OpenDriveXmlWriter.cpp \
- OpenDrive/OtherStructures.cpp \
- OpenDrive/Road.cpp \
- OpenDrive/RoadGeometry.cpp \
- TinyXML/tinystr.cpp \
- TinyXML/tinyxml.cpp \
- TinyXML/tinyxmlerror.cpp \
- TinyXML/tinyxmlparser.cpp \
- fresnl.cpp \
- polevl.c \
- const.cpp \
- gnss_coordinate_convert.cpp \
- simpleCustomEvent.cpp \
- xodrfunc.cpp \
- xodrscenfunc.cpp \
- xvmainwindow.cpp
- HEADERS += \
- filedialogextern.h \
- ivxodrtool.h \
- roaddigit.h \
- myview.h \
- gps_type.h \
- linedata.h \
- OpenDrive/Junction.h \
- OpenDrive/Lane.h \
- OpenDrive/ObjectSignal.h \
- OpenDrive/OpenDrive.h \
- OpenDrive/OpenDriveXmlParser.h \
- OpenDrive/OpenDriveXmlWriter.h \
- OpenDrive/OtherStructures.h \
- OpenDrive/Road.h \
- OpenDrive/RoadGeometry.h \
- TinyXML/tinystr.h \
- TinyXML/tinyxml.h \
- gnss_coordinate_convert.h \
- simpleCustomEvent.h \
- xodrfunc.h \
- xodrscenfunc.h \
- xvmainwindow.h
- FORMS += \
- xvmainwindow.ui
- QMAKE_CXXFLAGS += -g
- DISTFILES += \
- unix:INCLUDEPATH += /usr/include/eigen3
- win32:INCLUDEPATH += D:\File\soft\eigen
- RESOURCES += \
- opendrive.qrc
|