forked from uliegecsm/kokkos-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkokkos.json
28 lines (28 loc) · 790 Bytes
/
kokkos.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
{
"version" : 3,
"configurePresets" : [
{
"name" : "default",
"binaryDir" : "${sourceDir}/build-with-${presetName}",
"cacheVariables" : {
"CMAKE_BUILD_TYPE" : "Release",
"CMAKE_CXX_STANDARD" : "17",
"CMAKE_CXX_EXTENSIONS" : "OFF",
"BUILD_SHARED_LIBS" : "ON"
}
},
{
"name" : "OpenMP",
"inherits" : "default",
"cacheVariables" : {
"Kokkos_ENABLE_OPENMP" : "ON"
}
}
],
"buildPresets" : [
{
"name" : "OpenMP",
"configurePreset" : "OpenMP"
}
]
}