-
Notifications
You must be signed in to change notification settings - Fork 0
116 lines (108 loc) · 4.63 KB
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
sets(STRING
CMAKE_C_FLAGS "-march=x86-64-v2 -mtune=native -mavx2 -maes"
CMAKE_C_FLAGS_DEBUG "-O0 -g -ggdb -fstack-protector-all -fstack-reuse=none"
CMAKE_C_FLAGS_RELEASE "-Ofast -ftree-vectorize -funsafe-loop-optimizations -flto -fipa-pta -fmerge-all-constants -fno-stack-protector -static"
)
sets(STRING
CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS}"
CMAKE_CXX_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}"
CMAKE_CXX_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}"
)
list(APPEND CMAKE_IGNORE_PATH "c:/msys64" "c:/msys64/clang64")
list(APPEND CMAKE_IGNORE_PREFIX_PATH "c:/msys64" "c:/msys64/clang64")
add_definitions(-D_GLIBCXX_USE_DEPRECATED=0 -D_GLIBCXX_USE_CXX11_ABI)
add_compile_options(-fdiagnostics-color=always)
add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-fconcepts-diagnostics-depth=3>)
add_definitions(-D_GLIBCXX_ASSERTIONS)
add_compile_definitions($<$<COMPILE_LANGUAGE:CXX>:$<$<CONFIG:DEBUG,Debug>:-D_GLIBCXX_DEBUG>>)
add_compile_definitions($<$<COMPILE_LANGUAGE:CXX>:$<$<CONFIG:DEBUG,Debug>:-D_GLIBCXX_DEBUG_PEDANTIC>>)
add_compile_definitions($<$<NOT:$<CONFIG:Debug,DEBUG>>:_FORTIFY_SOURCE=2>)
add_compile_definitions($<$<CONFIG:Debug,DEBUG>:_FORTIFY_SOURCE=3>)
if(CMAKE_BUILD_TYPE STREQUAL "DEBUG")
set(OpenCV_DIR "f:/build/opencv/build-gcc-debug-floormat/install" CACHE PATH "" FORCE)
else()
set(BUILD_SHARED_LIBS OFF)
set(OpenCV_DIR "f:/build/opencv/build-gcc-release-floormat/install" CACHE PATH "" FORCE)
endif()
# for building submodule dependencies
function(fm-userconfig-external)
add_compile_options(
-Wno-ignored-attributes
-Wno-unused-function
-Wno-unused-but-set-variable
-Wno-restrict
-Wno-uninitialized
)
if(CMAKE_BUILD_TYPE STREQUAL "DEBUG")
sets(BOOL
CORRADE_BUILD_TESTS ON
MAGNUM_BUILD_TESTS ON
SDL_STATIC OFF
SDL_SHARED ON
CORRADE_BUILD_STATIC OFF
CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT OFF
MAGNUM_BUILD_STATIC OFF
MAGNUM_BUILD_PLUGINS_STATIC OFF
MAGNUM_BUILD_STATIC_UNIQUE_GLOBALS ON
)
else()
sets(BOOL
CORRADE_BUILD_TESTS OFF
MAGNUM_BUILD_TESTS OFF
SDL_STATIC ON
SDL_SHARED OFF
CORRADE_BUILD_STATIC ON
CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT ON
MAGNUM_BUILD_STATIC ON
MAGNUM_BUILD_PLUGINS_STATIC ON
MAGNUM_BUILD_STATIC_UNIQUE_GLOBALS OFF
)
set(OpenCV_DIR "OpenCV_DIR-NOTFOUND" CACHE STRING "" FORCE)
endif()
endfunction()
# for floormat sources only
function(fm-userconfig-src)
add_compile_options(-fstack-usage -Wstack-usage=16384)
add_compile_options(
-Wall -Wextra -Wpedantic -Wno-old-style-cast -Wno-padded
-Wstringop-overflow -Wstringop-truncation
-Wswitch-enum -Wlarger-than=8192
-Wlogical-op
-Wunsafe-loop-optimizations
-Wctor-dtor-privacy -Wno-error=ctor-dtor-privacy
-Winvalid-constexpr -Winvalid-imported-macros
-Woverloaded-virtual
#-fconcepts-diagnostics-depth=2
)
#add_compile_options(-Wuseless-cast)
add_link_options(-Wno-lto-type-mismatch -Wodr -Wno-error=odr)
add_compile_options(
#-Wno-c++20-compat
-Wno-switch-enum
-Wno-ctad-maybe-unsupported
-Wno-ignored-attributes
-Wno-parentheses
#-Wno-lto-type-mismatch -Wno-odr
-Wno-error=lto-type-mismatch
-Wodr -Wno-error=odr
)
add_compile_options(
-Werror=format
-Werror
-Wno-error=float-equal
-Wno-error=unused-parameter
-Wno-error=unused-variable
-Wno-error=unused-function
-Wno-error=unused-macros
-Wdouble-promotion -Werror=double-promotion
-Wno-error=restrict
-Wno-error=unused-but-set-variable
-Wno-error=subobject-linkage
-Wno-error=array-bounds
#-Wno-error=switch
-Wlarger-than=65535 -Wno-error=larger-than=65535
)
add_compile_options(
-Wdelete-incomplete -Werror=delete-incomplete
)
endfunction()