-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcpputils.pro
76 lines (59 loc) · 2.33 KB
/
cpputils.pro
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
TEMPLATE = lib
TARGET = cpputils
CONFIG += staticlib
CONFIG -= qt
!win*:CONFIG -= flat
CONFIG += strict_c++ c++latest
mac* | linux*|freebsd {
CONFIG(release, debug|release):CONFIG *= Release optimize_full
CONFIG(debug, debug|release):CONFIG *= Debug
}
android {
Release:OUTPUT_DIR=android/release
Debug:OUTPUT_DIR=android/debug
} else:ios {
Release:OUTPUT_DIR=ios/release
Debug:OUTPUT_DIR=ios/debug
} else {
Release:OUTPUT_DIR=release
Debug:OUTPUT_DIR=debug
}
DESTDIR = ../bin/$${OUTPUT_DIR}/
OBJECTS_DIR = ../build/$${OUTPUT_DIR}/$${TARGET}
MOC_DIR = ../build/$${OUTPUT_DIR}/$${TARGET}
UI_DIR = ../build/$${OUTPUT_DIR}/$${TARGET}
RCC_DIR = ../build/$${OUTPUT_DIR}/$${TARGET}
include (debugger/debugger.pri)
include (system/system.pri)
include (math/math.pri)
include (threading/threading.pri)
include (assert/assert.pri)
include (lang/lang.pri)
include (hash/hash.pri)
include (utility_functions/utility_functions.pri)
win32*:!*msvc2012:*msvc* {
QMAKE_CXXFLAGS += /FS
}
INCLUDEPATH += \
./ \
../cpp-template-utils/ \
cpp-template-utils/ #for building tests in CI workflows
win*{
QMAKE_CXXFLAGS += /MP /Zi /JMC
QMAKE_CXXFLAGS += /std:c++latest /permissive- /Zc:__cplusplus /Zc:char8_t
DEFINES += WIN32_LEAN_AND_MEAN NOMINMAX
QMAKE_CXXFLAGS_WARN_ON = /W4
!*msvc2013*:QMAKE_LFLAGS += /DEBUG:FASTLINK
Debug:QMAKE_LFLAGS += /INCREMENTAL
Release:QMAKE_LFLAGS += /OPT:REF /OPT:ICF
}
linux*|mac*|freebsd{
QMAKE_CXXFLAGS += -std=c++2b
QMAKE_CXXFLAGS += -pedantic-errors
QMAKE_CFLAGS += -pedantic-errors
QMAKE_CXXFLAGS_WARN_ON = -Wall -Wextra -Wdelete-non-virtual-dtor -Werror=duplicated-cond -Werror=duplicated-branches -Warith-conversion -Warray-bounds -Wattributes -Wcast-align -Wcast-qual -Wconversion -Wdate-time -Wduplicated-branches -Wendif-labels -Werror=overflow -Werror=return-type -Werror=shift-count-overflow -Werror=sign-promo -Werror=undef -Wextra -Winit-self -Wlogical-op -Wmissing-include-dirs -Wnull-dereference -Wpedantic -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-aliasing -Wstrict-aliasing=3 -Wuninitialized -Wunused-const-variable=2 -Wwrite-strings -Wlogical-op
QMAKE_CXXFLAGS_WARN_ON += -Wno-missing-include-dirs -Wno-undef
Release:DEFINES += NDEBUG=1
Debug:DEFINES += _DEBUG
}
g++*: QMAKE_CXXFLAGS += -fconcepts -fuse-ld=gold