-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeSettings.json.example
79 lines (79 loc) · 2.08 KB
/
CMakeSettings.json.example
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"configurations": [
{
"name": "x64_Debug",
"generator": "Visual Studio 15 2017 Win64",
"configurationType": "Debug",
"buildRoot": "${workspaceRoot}\\build-vc\\${name}",
"cmakeCommandArgs": "",
"variables": [
{
"name": "Eigen3_DIR",
"value": "C:\\MyPrograms\\Programming\\Cpp\\eigen3_3_4\\share\\eigen3\\cmake"
},
{
"name": "BOOST_ROOT",
"value": "C:\\MyPrograms\\Programming\\Cpp\\boost_1_65_0"
},
{
"name": "XGANDALF_BUILD_EXECUTABLE",
"value": "ON"
},
{
"name": "USE_INSTALLED_PRECOMUTED_DATA",
"value": "OFF"
}
]
},
{
"name": "x64_RelWithDebInfo",
"generator": "Visual Studio 15 2017 Win64",
"configurationType": "RelWithDebInfo",
"buildRoot": "${workspaceRoot}\\build-vc\\${name}",
"cmakeCommandArgs": "",
"variables": [
{
"name": "Eigen3_DIR",
"value": "C:\\MyPrograms\\Programming\\Cpp\\eigen3_3_4\\share\\eigen3\\cmake"
},
{
"name": "BOOST_ROOT",
"value": "C:\\MyPrograms\\Programming\\Cpp\\boost_1_65_0"
},
{
"name": "XGANDALF_BUILD_EXECUTABLE",
"value": "ON"
},
{
"name": "USE_INSTALLED_PRECOMUTED_DATA",
"value": "OFF"
}
]
},
{
"name": "x64_Release",
"generator": "Visual Studio 15 2017 Win64",
"configurationType": "Release",
"buildRoot": "${workspaceRoot}\\build-vc\\${name}",
"cmakeCommandArgs": "",
"variables": [
{
"name": "Eigen3_DIR",
"value": "C:\\MyPrograms\\Programming\\Cpp\\eigen3_3_4\\share\\eigen3\\cmake"
},
{
"name": "BOOST_ROOT",
"value": "C:\\MyPrograms\\Programming\\Cpp\\boost_1_65_0"
},
{
"name": "XGANDALF_BUILD_EXECUTABLE",
"value": "ON"
},
{
"name": "USE_INSTALLED_PRECOMUTED_DATA",
"value": "OFF"
}
]
}
]
}