123456789101112131415161718192021222324252627282930313233343536 |
- {
- "configurations": [
- {
- "name": "Linux-Clang-Debug",
- "generator": "Ninja",
- "configurationType": "Debug",
- "cmakeExecutable": "cmake",
- "remoteCopySourcesExclusionList": [ ".vs", ".git", "out" ],
- "cmakeCommandArgs": "",
- "buildCommandArgs": "",
- "ctestCommandArgs": "",
- "inheritEnvironments": [ "linux_clang_x64" ],
- "remoteMachineName": "${defaultRemoteMachineName}",
- "remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src",
- "remoteBuildRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/out/build/${name}",
- "remoteInstallRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/out/install/${name}",
- "remoteCopySources": true,
- "rsyncCommandArgs": "-t --delete",
- "remoteCopyBuildOutput": false,
- "remoteCopySourcesMethod": "rsync",
- "variables": [
- {
- "name": "Boost_INCLUDE_DIR",
- "value": "/usr/include ",
- "type": "PATH"
- },
- {
- "name": "glibc_DIR",
- "value": "/usr/include ",
- "type": "PATH"
- }
- ]
- }
- ]
- }
|