CMakeSettings.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "configurations": [
  3. {
  4. "name": "x64-Debug",
  5. "generator": "Visual Studio 16 2019 Win64",
  6. "configurationType": "Debug",
  7. "inheritEnvironments": [ "msvc_x64_x64" ],
  8. "buildRoot": "${projectDir}\\out\\build\\${name}",
  9. "installRoot": "${projectDir}\\out\\install\\${name}",
  10. "cmakeCommandArgs": "",
  11. "buildCommandArgs": "",
  12. "ctestCommandArgs": "",
  13. "variables": []
  14. },
  15. {
  16. "name": "x86-Debug",
  17. "generator": "Visual Studio 16 2019",
  18. "configurationType": "Debug",
  19. "buildRoot": "${projectDir}\\out\\build\\${name}",
  20. "installRoot": "${projectDir}\\out\\install\\${name}",
  21. "cmakeCommandArgs": "-D BUILD_TESTING=OFF",
  22. "buildCommandArgs": "",
  23. "ctestCommandArgs": "-C Debug",
  24. "inheritEnvironments": [ "msvc_x86" ],
  25. "variables": []
  26. },
  27. {
  28. "name": "Linux-Debug",
  29. "generator": "Unix Makefiles",
  30. "configurationType": "Debug",
  31. "cmakeExecutable": "/usr/bin/cmake",
  32. "remoteCopySourcesExclusionList": [ ".vs", ".git", "out" ],
  33. "cmakeCommandArgs": "-D BUILD_TESTING=ON",
  34. "buildCommandArgs": "",
  35. "ctestCommandArgs": "--output-on-failure",
  36. "inheritEnvironments": [ "linux_x64" ],
  37. "remoteMachineName": "-530210665;10.42.0.1 (username=root, port=1022, authentication=Password)",
  38. "remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src",
  39. "remoteBuildRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/out/build/${name}",
  40. "remoteInstallRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/out/install/${name}",
  41. "remoteCopySources": true,
  42. "rsyncCommandArgs": "-t --delete --delete-excluded --exclude \"/build\" --exclude \"/out\" --exclude-from=.gitignore",
  43. "remoteCopyBuildOutput": false,
  44. "remoteCopySourcesMethod": "rsync",
  45. "addressSanitizerRuntimeFlags": "detect_leaks=0",
  46. "variables": []
  47. }
  48. ]
  49. }