-
Notifications
You must be signed in to change notification settings - Fork 22
/
CMakePresets.json
41 lines (41 loc) · 1.15 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
33
34
35
36
37
38
39
40
41
{
"version": 4,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "Default",
"displayName": "Development Configuration",
"description": "Default configuration for dev environment",
"binaryDir": "${sourceDir}/build/",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": {
"type": "FILEPATH",
"value": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake"
},
"BUILD_VPT": {
"type": "BOOLEAN",
"value": "ON"
},
"OpenImageDenoise_DIR": "${sourceDir}/thirdparty/OpenImageDenoise/lib/cmake/OpenImageDenoise-2.1.0",
"CMAKE_CONFIGURATION_TYPES": "RelWithDebInfo",
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"VCPKG_INSTALLED_DIR": "${sourceDir}/vcpkg/vcpkg_installed",
"VCPKG_BUILD_TYPE": "release",
"VCPKG_TARGET_TRIPLET": "x64-windows"
}
}
],
"buildPresets": [
{
"name": "Default",
"configurePreset": "Default",
"displayName": "Build RelWithDebInfo",
"description": "Build RelWithDebInfo configuration",
"configuration": "RelWithDebInfo"
}
]
}