-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCMakePresets.json
33 lines (33 loc) · 999 Bytes
/
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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 23,
"patch": 0
},
"configurePresets": [
{
"name": "Proteus",
"displayName": "Default Config using Pelago",
"description": "Default build using LLVM built with pelago",
"environment": {
"PROTEUS_LLVM_VERSION": "14",
"PATH": "/scratch/pelago/llvm-$env{PROTEUS_LLVM_VERSION}/opt/bin:~/sbt/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin",
"LD_LIBRARY_PATH": "../lib:/scratch/pelago/llvm-$env{PROTEUS_LLVM_VERSION}/opt/lib"
},
"cmakeExecutable": "/scratch/pelago/llvm-$env{PROTEUS_LLVM_VERSION}/opt/bin/cmake",
"binaryDir": "${sourceDir}/cmake-build-debug/",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "opt/"
}
}
],
"buildPresets": [
{
"name": "Proteus Build",
"configurePreset": "Proteus",
"jobs": 128
}
]
}