-
Notifications
You must be signed in to change notification settings - Fork 105
/
CMakePresets.json
33 lines (33 loc) · 998 Bytes
/
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
{
"version": 3,
"configurePresets": [
{
"name": "ninja-nmc",
"displayName": "Ninja Multi-Config Qt",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_PREFIX_PATH": "C:/Qt/6.8.0/msvc2022_64",
"CMAKE_MAKE_PROGRAM": "C:/Qt/Tools/Ninja/ninja.exe",
"OpenCV_DIR": "C:/opencv/build"
},
"environment": {
"PATH": "C:/Qt/6.8.0/msvc2022_64/bin;C:/opencv/build/x64/vc16/bin;$penv{PATH}"
}
}
],
"buildPresets": [
{
"name": "debug",
"displayName": "Ninja Debug",
"configurePreset": "ninja-nmc",
"configuration": "Debug"
},
{
"name": "release",
"displayName": "Ninja Release",
"configurePreset": "ninja-nmc",
"configuration": "Release"
}
]
}