-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakePresets.json
59 lines (59 loc) · 1.36 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
{
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "$env{HOME}/.local"
}
},
{
"name": "ninja",
"hidden": true,
"generator": "Ninja"
},
{
"name": "accelerate-lapacke32",
"inherits": [
"base",
"ninja"
],
"binaryDir": "${sourceDir}/build/32",
"cacheVariables": {
"BUILD_INDEX64": false
},
"displayName": "LAPACKE 32bit configuration linking against Accelerate"
},
{
"name": "accelerate-lapacke64",
"inherits": [
"base",
"ninja"
],
"binaryDir": "${sourceDir}/build/64",
"cacheVariables": {
"BUILD_INDEX64": true
},
"displayName": "LAPACKE 64bit configuration linking against Accelerate ILP64 interface"
}
],
"buildPresets": [
{
"name": "accelerate-lapacke32",
"displayName": "LAPACKE 32bit build linking against Accelerate",
"configurePreset": "accelerate-lapacke32"
},
{
"name": "accelerate-lapacke64",
"displayName": "LAPACKE 64bit build linking against Accelerate ILP64 interface",
"configurePreset": "accelerate-lapacke64"
}
]
}