File: te_spl.pro

package info (click to toggle)
libterralib 4.3.0%2Bdfsg.2-14
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 61,564 kB
  • sloc: cpp: 225,052; ansic: 31,562; makefile: 807; sh: 80; xml: 37
file content (34 lines) | stat: -rw-r--r-- 782 bytes parent folder | download | duplicates (8)
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
30
31
32
33
34
CONFIG += dll
TARGET = te_spl
include (../config.pri)
DEFINES += TLSPL_AS_DLL

CONFIG += qt

TESPLSRC = $${TERRALIBPATH}/src/terralib/drivers/spl

INCLUDEPATH += $${TESPLSRC} \
			$${TERRALIBPATH}/src/libspl 

unix:LIBS += -lspl
win32 {
	win32-g++:LIBS += -lspl
	else {
		LIBS += -llibspl
	}
}
LIBS += -lterralib
HEADERS += $${TESPLSRC}/TeSPLDefines.h \
		$${TESPLSRC}/PluginInfo.h \
		$${TESPLSRC}/PluginMetadata.h \
		$${TESPLSRC}/PluginParameters.h \
		$${TESPLSRC}/PluginsManager.h \
		$${TESPLSRC}/PluginsParametersContainer.h \
		$${TESPLSRC}/PluginsSignal.h

SOURCES += $${TESPLSRC}/PluginMetadata.cpp \
		$${TESPLSRC}/PluginParameters.cpp \
		$${TESPLSRC}/PluginsManager.cpp \
		$${TESPLSRC}/PluginsSignal.cpp

include (../install_cfg.pri)