-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCMakePresets.json
32 lines (32 loc) · 1.06 KB
/
CMakePresets.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
{
"version": 3,
"configurePresets": [
{
"name": "vs2022",
"description": "Target Windows with the Visual Studio development environment.",
"hidden": false,
"generator": "Visual Studio 17 2022",
"toolset": "ClangCL",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install",
"cacheVariables": {
"GLM_ENABLE_SIMD_AVX": "ON",
"YAML_CPP_BUILD_TESTS": "OFF",
"YAML_CPP_BUILD_CONTRIB": "OFF",
"YAML_CPP_BUILD_TOOLS": "OFF",
"YAML_CPP_INSTALL": "OFF",
"YAML_CPP_FORMAT_SOURCE": "OFF"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"intelliSenseMode": "windows-clang-x64"
}
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
}
]
}