1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
TEMPLATE = lib
CONFIG += plugin static
INCLUDEPATH += ../..
DESTDIR = ../../bin/plugins_client
unix {
QMAKE_CXXFLAGS_RELEASE -= -O2
QMAKE_CXXFLAGS_RELEASE += -O3 \
-Wno-unused-function
QMAKE_CXXFLAGS_DEBUG += -Wno-unused-function
}
HEADERS += osmrendererclient.h \
../../interfaces/irenderer.h \
../../utils/coordinates.h \
../../utils/config.h \
rendererbase.h \
brsettingsdialog.h \
../../utils/intersection.h \
osmrsettingsdialog.h
SOURCES += osmrendererclient.cpp \
rendererbase.cpp \
brsettingsdialog.cpp \
osmrsettingsdialog.cpp
QT += network
FORMS += \
brsettingsdialog.ui \
osmrsettingsdialog.ui
|