mirror of
git://projects.qi-hardware.com/nanomap.git
synced 2024-11-22 14:34:58 +02:00
26 lines
520 B
Prolog
26 lines
520 B
Prolog
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
#CONFIG += debug
|
|
DESTDIR = ..
|
|
unix {
|
|
QMAKE_CXXFLAGS_RELEASE -= -O2
|
|
QMAKE_CXXFLAGS_RELEASE += -O3 \
|
|
-Wno-unused-function
|
|
QMAKE_CXXFLAGS_DEBUG += -Wno-unused-function
|
|
}
|
|
|
|
HEADERS += \
|
|
utils/coordinates.h \
|
|
utils/config.h \
|
|
blockcache.h \
|
|
binaryheap.h \
|
|
interfaces/irouter.h \
|
|
contractionhierarchiesclient.h \
|
|
compressedgraph.h \
|
|
interfaces/igpslookup.h \
|
|
utils/bithelpers.h \
|
|
utils/qthelpers.h
|
|
|
|
SOURCES += \
|
|
contractionhierarchiesclient.cpp
|