-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpygnu.json
58 lines (58 loc) · 1.63 KB
/
pygnu.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
57
58
{
"output_dir": "out",
"output_cache_dir": "out\\cache",
"output_name": "main",
"source_selectors": [
"**/*.c",
"**/*.cpp",
"**/*.cc",
"**/*.cxx"
],
"build_configurations": {
"debug": {
"predefines": {
"_DEBUG": null
},
"optimization_lvl": "med",
"optimization_type": "debug",
"standard": "c++17",
"warning_level": "all",
"warning_pedantic": false,
"print_includes": false,
"catch_typos": true,
"exit_on_errors": true,
"dynamically_linkable": true,
"print_stats": true,
"simd_type": "sse",
"include_dirs": [],
"lib_dirs": [],
"lib_names": [],
"assembler_args": [],
"linker_args": [],
"preprocessor_args": []
},
"release": {
"predefines": {
"NDEBUG": null,
"_RELEASE": null
},
"optimization_lvl": "extreme",
"optimization_type": "speed",
"standard": "c17",
"warning_level": "all",
"warning_pedantic": false,
"print_includes": false,
"catch_typos": true,
"exit_on_errors": true,
"dynamically_linkable": true,
"print_stats": true,
"simd_type": "sse",
"include_dirs": [],
"lib_dirs": [],
"lib_names": [],
"assembler_args": [],
"linker_args": [],
"preprocessor_args": []
}
}
}