mirror of
git://projects.qi-hardware.com/nanomap.git
synced 2024-11-22 13:19:42 +02:00
34 lines
616 B
Prolog
34 lines
616 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2010-06-25T08:48:06
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
include(../../nanomap.pri)
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
#CONFIG += debug
|
|
|
|
DESTDIR = ..
|
|
|
|
HEADERS += \
|
|
utils/coordinates.h \
|
|
utils/config.h \
|
|
cell.h \
|
|
interfaces/igpslookup.h \
|
|
gpsgridclient.h \
|
|
table.h \
|
|
utils/bithelpers.h \
|
|
utils/qthelpers.h
|
|
|
|
unix {
|
|
QMAKE_CXXFLAGS_RELEASE -= -O2
|
|
QMAKE_CXXFLAGS_RELEASE += -O3 \
|
|
-Wno-unused-function
|
|
QMAKE_CXXFLAGS_DEBUG += -Wno-unused-function
|
|
}
|
|
|
|
SOURCES += \
|
|
gpsgridclient.cpp
|