blob: 33eff2991ee3a6a5f52e2381e168b218bc83cf81 (
plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
if(CMAKE_BUILD_TYPE STREQUAL "DEBUG")
add_compile_options(-mavx2)
if(FLOORMAT_WITH-COVERAGE)
set(CMAKE_BUILD_TYPE DEBUG CACHE STRING "" FORCE)
add_definitions(
-fprofile-instr-generate
-fcoverage-mapping
-mllvm -runtime-counter-relocation=true
)
add_link_options(
-fprofile-instr-generate
-fcoverage-mapping
)
endif()
else()
add_compile_options(-march=native -mavx2)
add_compile_options(-emit-llvm)
add_compile_options(-fmerge-all-constants -flto=full -fwhole-program-vtables -fforce-emit-vtables)
add_link_options(-fmerge-all-constants -flto=full -fwhole-program-vtables -fforce-emit-vtables)
add_link_options(-Wl,--gc-sections -Wl,--icf=all)
add_compile_options(-Wno-nan-infinity-disabled)
endif()
if(FLOORMAT_ASAN)
add_compile_options(-fsanitize=undefined -fsanitize=address)
add_link_options(-fsanitize=undefined -fsanitize=address)
endif()
set(OpenCV_DIR "f:/dev/opentrack-depends/opencv/build-clang-amd64/install" CACHE PATH "" FORCE)
set(CMAKE_INSTALL_MESSAGE NEVER)
set(_debug_info_flags "-ggdb3 -gsplit-dwarf -gcolumn-info -gdwarf-aranges -gz=zlib")
sets(STRING
CMAKE_C_FLAGS ""
CMAKE_C_FLAGS_DEBUG "-O0 ${_debug_info_flags} -fstack-protector-all"
CMAKE_C_FLAGS_RELEASE "-O3 ${_debug_info_flags} -ffast-math -march=nehalem -mtune=native -mpopcnt -mavx -fomit-frame-pointer -fno-stack-protector"
CMAKE_EXE_LINKER_FLAGS_DEBUG ""
CMAKE_SHARED_LINKER_FLAGS_DEBUG ""
)
sets(STRING
CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS}"
CMAKE_CXX_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}"
CMAKE_CXX_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}"
)
add_compile_options(-fansi-escape-codes)
add_compile_options(-Xclang -fcolor-diagnostics -fdiagnostics-color=always)
if(NOT CMAKE_CXX_COMPILER_VERSION LESS "18.0")
add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-fassume-nothrow-exception-dtor>)
endif()
set(FLOORMAT_SUBMODULE-SDL2 1)
# for building submodule dependencies
function(fm-userconfig-external)
add_compile_options(
-Wno-ignored-attributes
-Wno-unused-function
-Wno-unused-but-set-variable
-Wno-error=return-type
)
if(NOT CMAKE_BUILD_TYPE STREQUAL "DEBUG")
sets(BOOL
FLOORMAT_SUBMODULE-SDL2 ON
SDL_SHARED OFF
SDL_STATIC ON
CORRADE_BUILD_STATIC ON
CORRADE_BUILD_TESTS OFF
CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT ON
MAGNUM_BUILD_PLUGINS_STATIC ON
MAGNUM_BUILD_STATIC ON
MAGNUM_BUILD_TESTS OFF
)
else()
sets(BOOL
FLOORMAT_SUBMODULE-SDL2 OFF
SDL_SHARED ON
SDL_STATIC OFF
CORRADE_BUILD_STATIC OFF
CORRADE_BUILD_TESTS ON
CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT OFF
MAGNUM_BUILD_PLUGINS_STATIC OFF
MAGNUM_BUILD_STATIC OFF
MAGNUM_BUILD_TESTS ON
)
endif()
if(FLOORMAT_ASAN)
sets(BOOL
CORRADE_BUILD_STATIC ON
CORRADE_BUILD_TESTS OFF
MAGNUM_BUILD_STATIC ON
MAGNUM_BUILD_TESTS OFF
)
endif()
endfunction()
# for test_app sources only
function(fm-userconfig-src)
add_compile_options(-Wall -Wextra -Wpedantic -Wno-old-style-cast -Wno-padded -Weverything)
add_compile_options(
-Wno-c++98-compat
-Wno-c++20-compat
-Wno-c++98-compat-pedantic
-Wno-logical-op-parentheses
-Wno-undefined-func-template
-Wno-switch-enum
-Wno-covered-switch-default
-Wno-old-style-cast
-Wno-global-constructors
-Wno-exit-time-destructors
-Wno-implicit-int-float-conversion
-Wno-shadow-field-in-constructor
-Wno-shadow-field
-Wno-shadow
-Wno-ctad-maybe-unsupported
-Wno-documentation-unknown-command
-Wno-documentation
-Wno-ignored-attributes
-Wno-reserved-identifier
-Wno-zero-length-array
-Wno-unsafe-buffer-usage
-Wno-bitwise-op-parentheses
-Wno-weak-vtables
-Wno-c99-compat
)
add_compile_options(
-Werror
-Wno-error=float-equal
#-Wno-error=comma
-Wno-error=unused-parameter
-Wno-error=unused-private-field
-Wno-error=unused-variable
-Wno-error=unused-function
-Wno-error=unused-template
-Wno-error=unused-member-function
-Wno-error=unused-macros
-Wno-error=alloca
-Wno-error=double-promotion
-Wno-error=ambiguous-reversed-operator
-Wno-error=comma
-Wno-error=weak-vtables
-Wno-error=unreachable-code
-Wno-error=unused-command-line-argument
-Wno-error=switch-default
)
if(CMAKE_BUILD_TYPE STREQUAL "DEBUG")
add_compile_options(-ftime-trace)
endif()
endfunction()
|