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
|
CONFIG += dll
TARGET = te_shapelib
include (../config.pri)
# Path definitions
# ----------------------------------------------------------
SHPSRCPATH = $${TERRALIBPATH}/src/terralib/drivers/shapelib
# ----------------------------------------------------------
DEFINES += TLSHP_AS_DLL
LIBS += -lshapelib -lterralib
INCLUDEPATH += $${SHPSRCPATH} \
$${TERRALIBPATH}/src/shapelib
HEADERS += $${SHPSRCPATH}/TeDriverSHPDBF.h \
$${SHPSRCPATH}/TeSHPDriverFactory.h \
$${SHPSRCPATH}/TeSHPDefines.h
SOURCES += $${SHPSRCPATH}/TeDriverSHPDBF.cpp \
$${SHPSRCPATH}/TeSHPDriverFactory.cpp
include (../install_cfg.pri)
CONFIG(copy_dir_files)
{
include.path = $${DEPLOY_DIR}/include/shapelib
include.files = $${HEADERS}
INSTALLS += include
}
|