forked from OpenMS/OpenMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
34 lines (34 loc) · 1.27 KB
/
Copy pathdevcontainer.json
File metadata and controls
34 lines (34 loc) · 1.27 KB
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
{
"name": "OpenMS Dev Container",
"image": "ghcr.io/openms/contrib_manylinux_2_34:latest",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cmake-tools",
"ms-vscode.cpptools",
"hbenl.vscode-test-explorer",
"fredericbonnet.cmake-test-adapter",
"mhutchie.git-graph",
"hbenl.test-adapter-converter"
],
"settings": {
"cmake.parallelJobs": 0,
"cmake.clearOutputBeforeBuild": false,
"cmake.ignoreKitEnv": true,
"cmake.configureOnOpen": true,
"cmake.configureArgs": [
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON",
"-DOPENMS_CONTRIB_LIBS='/contrib-build'",
"-DBOOST_USE_STATIC=ON",
"-DCMAKE_PREFIX_PATH='/contrib-build/;/usr/;/usr/local'",
"-DHAS_XSERVER=OFF",
"-DENABLE_DOCS=OFF",
"-DWITH_GUI=OFF"
],
"cmake.skipConfigureIfCachePresent": true,
"cmake.buildDirectory": "${workspaceFolder}/build"
}
}
},
"postCreateCommand": "yum install openssh-clients -y"
}