forked from LibreCAD/LibreCAD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.pri
86 lines (74 loc) · 2.27 KB
/
common.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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# include user-defined things in every qmake project
exists( custom.pro ):include( custom.pro )
exists( custom.pri ):include( custom.pri )
include( settings.pri )
# Store intermedia stuff somewhere else
isEmpty(GENERATED_DIR){
GENERATED_DIR = generated
}
# Store intermedia stuff somewhere else
OBJECTS_DIR = $${GENERATED_DIR}/obj
MOC_DIR = $${GENERATED_DIR}/moc
RCC_DIR = $${GENERATED_DIR}/rcc
UI_DIR = $${GENERATED_DIR}/ui
UI_HEADERS_DIR = $${GENERATED_DIR}/ui
UI_SOURCES_DIR = $${GENERATED_DIR}/ui
# Copy command
win32 {
COPY = copy /y
} else {
COPY = cp
}
# Windows compiler settings
win32 {
QMAKE_CXXFLAGS += -U__STRICT_ANSI__
QMAKE_CFLAGS_THREAD -= -mthreads
QMAKE_CXXFLAGS_THREAD -= -mthreads
QMAKE_LFLAGS_THREAD -= -mthreads
#qt version check for mingw
win32-g++ {
contains(QT_VERSION, ^4\\.8\\.[0-4]) {
DEFINES += QT_NO_CONCURRENT=0
}
# Silence warning: typedef '...' locally defined but not used [-Wunused-local-typedefs]
# this was caused by boost headers and g++ 4.8.0 (Qt 5.1 / MinGW 4.8)
greaterThan( QT_MAJOR_VERSION, 4 ) {
QMAKE_CXXFLAGS += -Wno-unused-local-typedefs
}
}else{
!build_pass:verbose:message(Setting up support for MSVC.)
# define the M_PI etc macros for MSVC compilers.
DEFINES += _USE_MATH_DEFINES
}
# The .NET 2003 compiler (at least) is touchy about its own headers ...
win32-msvc2003 {
# Silence "unused formal parameter" warnings about unused `_Iosbase`
# in the header file `xloctime` (a Vc7 header after all!).
QMAKE_CXXFLAGS += /wd4100
}
}
unix|macx|win32-g++ {
# no such option for MSVC
QMAKE_CXXFLAGS_DEBUG += -g
QMAKE_CXXFLAGS += -g
}
# fix for GitHub Issue #880
# prevent QMake from using -isystem flag for system include path
# this breaks gcc 6 builds because of its #include_next feature
QMAKE_CFLAGS_ISYSTEM = ""
# svg support
QT += svg
greaterThan( QT_MAJOR_VERSION, 4) {
CONFIG += c++11
}else{
unix|macx|win32-g++ {
# no such option for MSVC
QMAKE_CXXFLAGS += -std=c++11
QMAKE_CXXFLAGS_DEBUG += -std=c++11
}
}
# RVT July 12 2015, I believe we need these here
#macx{
# QMAKE_CXXFLAGS_DEBUG += -mmacosx-version-min=10.8
# QMAKE_CXXFLAGS += -mmacosx-version-min=10.8
#}