-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCMakePresets.json
More file actions
27 lines (27 loc) · 920 Bytes
/
CMakePresets.json
File metadata and controls
27 lines (27 loc) · 920 Bytes
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
{
"version": 8,
"configurePresets": [
{
"name": "ggml-cuda",
"displayName": "ggml-cuda Release Config GCC 11.4.0 x86_64-linux-gnu",
"description": "Using compilers: C = /usr/bin/gcc, CXX = /usr/bin/g++",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"GGML_CUDA": "ON",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install",
"CMAKE_C_COMPILER": "/usr/bin/gcc",
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
"CMAKE_BUILD_TYPE": "Release"
}
}
],
"buildPresets": [
{
"name": "release build",
"configurePreset": "ggml-cuda",
"displayName": "ggml-cuda Release Build",
"description": "Build the project using ggml-cuda release config"
}
]
}