-
Notifications
You must be signed in to change notification settings - Fork 3
/
version.pri
38 lines (33 loc) · 1.31 KB
/
version.pri
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
################################################################################
# QBuildSystem
#
# Copyright(c) 2021 by Targoman Intelligent Processing <http://tip.co.ir>
#
# Redistribution and use in source and binary forms are allowed under the
# terms of BSD License 2.0.
################################################################################
ProjectName="TargomanCommon"
VERSION=1.1.2
#+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-
LIBS += -lz
#+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-
QT += core network
QT -= gui
QMAKE_CXXFLAGS += -Wno-unknown-pragmas
defined(QJsonRPC, var) equals(QJsonRPC, 1) {
DEFINES += WITH_QJsonRPC
LIBS += -lQJsonRPC
} else {
DISABLED_DPES += QJsonRPC
}
#+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-
# Qt5.5.1 on OSX needs both c++11 and c++14!! the c++14 is not enough
QMAKE_CXXFLAGS += -std=c++11 -std=c++14 -std=c++17
CONFIGS += c++11 c++14 c++17
#+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-++-+-+-
#following definitions are used on all Targoman projects
DEFINES += TARGOMAN_DEBUG_PROCESS_LINE=1
DEFINES += TARGOMAN_SHOW_WARNING=1
DEFINES += TARGOMAN_SHOW_INFO=1
DEFINES += TARGOMAN_SHOW_HAPPY=1
DEFINES += TARGOMAN_SHOW_NORMAL=1