This repository was archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathremotedataaccesshandler.pro
More file actions
67 lines (51 loc) · 1.92 KB
/
remotedataaccesshandler.pro
File metadata and controls
67 lines (51 loc) · 1.92 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
##-------------------------------------------------
#
# Project created by QtCreator 2012-09-19T13:18:13
#
#-------------------------------------------------
CONFIG += plugin
TARGET = remotedataaccesshandler
include(global.pri)
QT = network sql
QT -= gui
TEMPLATE = lib
DEFINES += REMOTEDATAACCESSHANDLER_LIBRARY
win32{
LIBS += -L$$PWD/../libraries/$$PLATFORM$$CONF/ -lilwiscore \
-L$$PWD/../libraries/$$PLATFORM$$CONF/ -llibgeos \
-L$$PWD/../libraries/$$PLATFORM$$CONF/ -lhttpserver
}
linux{
LIBS += -L$$PWD/../libraries/$$PLATFORM$$CONF/ -lilwiscore \
-L$$GEOSLIB -lgeos-3.4.2 \
-L$$PWD/../libraries/$$PLATFORM$$CONF/ -lhttpserver
}
win32:CONFIG(release, debug|release): {
QMAKE_CXXFLAGS_RELEASE += -O2
}
INCLUDEPATH += $$PWD/core \
$$PWD/../external/geos \
$$PWD/extensions/httpserver \
$$PWD/extensions/httpserver/httpserver
DEPENDPATH += $$PWD/core \
$$PWD/../external/geos
DESTDIR = $$PWD/../libraries/$$PLATFORM$$CONF/extensions/$$TARGET
DLLDESTDIR = $$PWD/../output/$$PLATFORM$$CONF/bin/extensions/$$TARGET
OTHER_FILES += \
remotedataaccesshandler/remotedataaccesshandler.json
HEADERS += \
remotedataaccesshandler/remotedataaccesshandlermodule.h \
remotedataaccesshandler/remotedataaccessrequesthandler.h \
remotedataaccesshandler/remoteoperationrequesthandler.h \
remotedataaccesshandler/remoteoperation.h
SOURCES += \
remotedataaccesshandler/remotedataaccesshandlermodule.cpp \
remotedataaccesshandler/remotedataaccessrequesthandler.cpp \
remotedataaccesshandler/remoteoperationrequesthandler.cpp \
remotedataaccesshandler/remoteoperation.cpp
linux{
dependencies.files = $$GEOSLIB/libgeos-3.4.2.so
dependencies.path = $$PWD/../output/$$PLATFORM$$CONF/bin/extensions/$$TARGET
target.path = $$PWD/../output/$$PLATFORM$$CONF/bin/extensions/$$TARGET
INSTALLS += target dependencies
}