-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCMakeSettings.json
More file actions
55 lines (54 loc) · 1.43 KB
/
CMakeSettings.json
File metadata and controls
55 lines (54 loc) · 1.43 KB
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
{
"configurations": [
{
"name": "x86-Debug",
"generator": "Visual Studio 15 2017 Win64",
"configurationType": "Debug",
"variables": [
{
"name": "H5CPP_CONAN_FILE",
"value": "conanfile_eugen.txt"
},
{
"name": "H5CPP_CONAN_PROFILE",
"value": "h5cpp-windows10-debug"
},
{
"name": "CMAKE_BUILD_TYPE",
"value": "Debug"
},
{
"name": "CPACK_GENERATOR",
"value": "WIX"
}
],
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}",
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}",
"cmakeCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x86-Release",
"generator": "Visual Studio 15 2017 Win64",
"configurationType": "Release",
"variables": [
{
"name": "H5CPP_CONAN_FILE",
"value": "conanfile_eugen.txt"
},
{
"name": "CMAKE_BUILD_TYPE",
"value": "Release"
},
{
"name": "CPACK_GENERATOR",
"value": "WIX"
}
],
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}",
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}",
"cmakeCommandArgs": "",
"ctestCommandArgs": ""
}
]
}