-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeUserPresets.json
44 lines (44 loc) · 1.07 KB
/
CMakeUserPresets.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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"displayName": "osx-xcode-debug",
"binaryDir": "/Users/gupi/Documents/Development/Private/fips-workspace/fips-build/mz-800-emulator/osx-xcode-debug",
"generator": "Xcode",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"FIPS_CONFIG": "osx-xcode-debug",
"FIPS_LOCAL_BUILD": "OFF",
"FIPS_OSX_USE_ARC": {
"type": "BOOL",
"value": "ON"
},
"FIPS_AUTO_IMPORT": "OFF",
"CMAKE_OSX_SYSROOT": "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.2.sdk"
}
}
],
"buildPresets": [
{
"name": "default",
"configurePreset": "default",
"configuration": "Debug"
},
{
"name": "debug",
"configurePreset": "default",
"configuration": "Debug"
},
{
"name": "release",
"configurePreset": "default",
"configuration": "Release"
}
]
}