-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpp_builder_config.json
56 lines (50 loc) · 1.22 KB
/
cpp_builder_config.json
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
{
"compiler": {
"compiler_style": "gcc",
"compiler_exe": "g++",
"linker_exe": "g++"
},
"directories": {
"project_dir": ".",
"exe_path_name": "bin/sns",
"include_dirs": [
"include",
"ext"
],
"source_dirs": [
"src"
],
"temp_dir": "obj"
},
"default" : {
"libraries_dirs": [
],
"libraries_names": [
"dl",
"pthread",
"z",
"crypto",
"ssl",
"netTcpSslDebug"
]
},
"debug": {
"compiler_args": "-g3 -std=c++2a -Wno-missing-field-initializers -Wno-unknown-pragmas -Wall -Wconversion -Wshadow -Wextra -fsanitize=address -fsanitize=leak",
"linker_args": "-fsanitize=address -fsanitize=leak"
},
"no-asan": {
"compiler_args": "-g3 -std=c++2a -Wno-missing-field-initializers -Wno-unknown-pragmas -Wall -Wconversion -Wshadow -Wextra",
"linker_args": ""
},
"no-threads": {
"compiler_args": "-g3 -std=c++2a -Wno-missing-field-initializers -Wno-unknown-pragmas -Wall -Wconversion -DNO_THREADING -Wshadow -Wextra -fsanitize=address -fsanitize=leak",
"linker_args": "-fsanitize=address -fsanitize=leak"
},
"release": {
"compiler_args": "-Ofast -g3 -std=c++2a",
"linker_args": "",
"scripts": {
"post": "move"
}
}
}