File: osmrenderer.pro

package info (click to toggle)
monav 0.3-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,116 kB
  • ctags: 6,239
  • sloc: cpp: 34,354; ansic: 4,103; java: 1,436; sh: 108; xml: 49; makefile: 44
file content (28 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (2)
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
TEMPLATE = lib
CONFIG += plugin static

INCLUDEPATH += ../..

HEADERS += osmrenderer.h \
	 ../../interfaces/ipreprocessor.h \
	 ../../interfaces/iimporter.h \
	 ../../utils/coordinates.h \
	 ../../utils/config.h
SOURCES += osmrenderer.cpp
DESTDIR = ../../bin/plugins_preprocessor
unix {
	QMAKE_CXXFLAGS_RELEASE -= -O2
	QMAKE_CXXFLAGS_RELEASE += -O3 \
		 -Wno-unused-function
	QMAKE_CXXFLAGS_DEBUG += -Wno-unused-function
}

!nogui {
	SOURCES += orsettingsdialog.cpp
	HEADERS += orsettingsdialog.h
	FORMS += orsettingsdialog.ui
}
nogui {
	DEFINES += NOGUI
	QT -= gui
}