forked from nanodbc/nanodbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
98 lines (98 loc) · 2.28 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"version": 3,
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/_build/${presetName}",
"installDir": "${sourceDir}/_install/${presetName}"
},
{
"name": "x64",
"displayName": "x64",
"hidden": true,
"architecture": {
"value": "x64",
"strategy": "external"
}
},
{
"name": "x86",
"displayName": "x86",
"hidden": true,
"architecture": {
"value": "x86",
"strategy": "external"
}
},
{
"name": "debug",
"displayName": "Debug",
"hidden": true,
"cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" }
},
{
"name": "release",
"displayName": "Release",
"hidden": true,
"cacheVariables": { "CMAKE_BUILD_TYPE": "RelWithDebInfo" }
},
{
"name": "cxx-14",
"displayName": "C++ 14",
"hidden": true,
"cacheVariables": { "CMAKE_CXX_STANDARD": "14" }
},
{
"name": "cxx-17",
"displayName": "C++ 17",
"hidden": true,
"cacheVariables": { "CMAKE_CXX_STANDARD": "17" }
},
{
"name": "cxx-20",
"displayName": "C++ 20",
"hidden": true,
"cacheVariables": { "CMAKE_CXX_STANDARD": "20" }
},
{
"name": "unicode",
"displayName": "Unicode",
"hidden": true,
"cacheVariables": { "NANODBC_ENABLE_UNICODE": "ON" }
},
{
"name": "cxx14-x64-debug",
"inherits": [ "base", "cxx-14", "x64", "debug" ]
},
{
"name": "cxx14-x64-debug-unicode",
"inherits": [ "base", "cxx-14", "x64", "debug", "unicode" ]
},
{
"name": "cxx14-x64-release",
"inherits": [ "base", "cxx-14", "x64", "release" ]
},
{
"name": "cxx14-x64-release-unicode",
"inherits": [ "base", "cxx-14", "x64", "release", "unicode" ]
},
{
"name": "cxx17-x64-debug",
"inherits": [ "base", "cxx-17", "x64", "debug" ]
},
{
"name": "cxx17-x64-release",
"inherits": [ "base", "cxx-17", "x64", "release" ]
},
{
"name": "cxx20-x64-debug",
"inherits": [ "base", "cxx-20", "x64", "debug" ]
},
{
"name": "cxx20-x64-release",
"inherits": [ "base", "cxx-20", "x64", "release" ]
}
]
}