-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathKoncludeLIB.pro
More file actions
35 lines (27 loc) · 943 Bytes
/
KoncludeLIB.pro
File metadata and controls
35 lines (27 loc) · 943 Bytes
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
JAVAHOME = $$(JAVA_HOME)
message("Using $$JAVAHOME/include from enviroment variable 'JAVA_HOME' as include directory for Java/JNI.")
message("Updating Konclude version from Git Revision.")
# Create our custom gitbuild target.
win32:gitbuild.commands = $${PWD}/WinGitBuildScript.bat
else:gitbuild.commands = $${PWD}/UnixGitBuildScript.sh
QMAKE_EXTRA_TARGETS += gitbuild
PRE_TARGETDEPS = gitbuild
message("Preparing source code of Konclude.")
TEMPLATE = lib
TARGET = Konclude
DESTDIR = ./Release
QT += xml network concurrent
CONFIG += release warn_off c++11
DEFINES += QT_XML_LIB QT_NETWORK_LIB KONCLUDE_FORCE_ALL_DEBUG_DEACTIVATED KONCLUDE_COMPILE_JNI_INTERFACE
INCLUDEPATH += ./generatedfiles \
./GeneratedFiles/Release \
./Source \
$$JAVAHOME/include \
.
DEPENDPATH += .
MOC_DIR += ./GeneratedFiles/release
OBJECTS_DIR += release
UI_DIR += ./GeneratedFiles
RCC_DIR += ./GeneratedFiles
#Include file(s)
include(Konclude.pri)