12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "configurations": [
- {
- "name": "x86-Release",
- "generator": "Visual Studio 16 2019",
- "configurationType": "Release",
- "buildRoot": "${projectDir}\\out\\build\\${name}",
- "installRoot": "${projectDir}\\out\\install\\${name}",
- "cmakeCommandArgs": "-D BUILD_TESTING=OFF",
- "buildCommandArgs": "",
- "ctestCommandArgs": "-C Release",
- "inheritEnvironments": [ "msvc_x86" ]
- },
- {
- "name": "ARM64-GCC-Debug",
- "generator": "Unix Makefiles",
- "configurationType": "Debug",
- "cmakeExecutable": "cmake",
- "remoteCopySourcesExclusionList": [ ".vs", ".git", "out" ],
- "cmakeCommandArgs": "-D BUILD_TESTING=OFF -D WITH_CI_NUMBER=OFF -D SIMULATE_ON=OFF -D BUILD_DEVADAPTER=ON",
- "buildCommandArgs": "",
- "ctestCommandArgs": "--output-on-failure",
- "inheritEnvironments": [ "linux_arm" ],
- "remoteMachineName": "${defaultRemoteMachineName}",
- "remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/src",
- "remoteBuildRoot": "$HOME/.vs/${projectDirName}/out/build/${name}",
- "remoteInstallRoot": "$HOME/.vs/${projectDirName}/out/install/${name}",
- "remoteCopySources": true,
- "rsyncCommandArgs": "-t --delete --delete-excluded --exclude \"/build\" --exclude \"/out\" --exclude-from=.gitignore",
- "remoteCopyBuildOutput": false,
- "remoteCopySourcesMethod": "rsync",
- "addressSanitizerRuntimeFlags": "detect_leaks=0",
- "variables": [
- {
- "name": "SIMULATE_ON",
- "value": "False",
- "type": "BOOL"
- }
- ]
- },
- {
- "name": "ARM64-GCC-Release",
- "generator": "Unix Makefiles",
- "configurationType": "Release",
- "cmakeExecutable": "cmake",
- "remoteCopySourcesExclusionList": [ ".vs", ".git", "out" ],
- "cmakeCommandArgs": "-D BUILD_TESTING=OFF",
- "buildCommandArgs": "",
- "ctestCommandArgs": "--output-on-failure",
- "inheritEnvironments": [ "linux_arm" ],
- "variables": [
- {
- "name": "SIMULATE_ON",
- "value": "False",
- "type": "BOOL"
- },
- {
- "name": "DEVOPS_INSTALL_SWITCH",
- "value": "False",
- "type": "BOOL"
- }
- ],
- "remoteMachineName": "${defaultRemoteMachineName}",
- "remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/src",
- "remoteBuildRoot": "$HOME/.vs/${projectDirName}/out/build/${name}",
- "remoteInstallRoot": "$HOME/.vs/${projectDirName}/out/install/${name}",
- "remoteCopySources": true,
- "rsyncCommandArgs": "-t --delete --delete-excluded --exclude \"/build\" --exclude \"/out\" --exclude-from=.gitignore",
- "remoteCopyBuildOutput": false,
- "remoteCopySourcesMethod": "rsync",
- "addressSanitizerRuntimeFlags": "detect_leaks=0"
- },
- {
- "name": "x86-ReleaseWithNinja",
- "generator": "Ninja",
- "configurationType": "Release",
- "buildRoot": "${projectDir}\\out\\build\\${name}",
- "installRoot": "${projectDir}\\out\\install\\${name}",
- "cmakeCommandArgs": "",
- "buildCommandArgs": "",
- "ctestCommandArgs": "",
- "inheritEnvironments": [ "msvc_x86" ]
- }
- ]
- }
|