CMakeSettings.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "configurations": [
  3. {
  4. "name": "x64-Debug",
  5. "generator": "Ninja",
  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. },
  14. {
  15. "name": "Linux_GCC_Debug",
  16. "generator": "Ninja",
  17. "configurationType": "Debug",
  18. "cmakeExecutable": "cmake",
  19. "remoteCopySourcesExclusionList": [ ".vs", ".git", "out", "build", "**/CMakeFiles" ],
  20. "cmakeCommandArgs": "",
  21. "buildCommandArgs": "",
  22. "ctestCommandArgs": "",
  23. "inheritEnvironments": [ "linux_arm" ],
  24. "remoteMachineName": "-546935644;192.168.1.133 (username=cxdz, port=22, authentication=Password)",
  25. "remoteCMakeListsRoot": "$HOME/codebuild/${projectDirName}/${workspaceHash}/src",
  26. "remoteBuildRoot": "$HOME/codebuild/DriverPlatform-V3.1/build",
  27. "remoteInstallRoot": "$HOME/codebuild/${projectDirName}/${workspaceHash}/out/install/${name}",
  28. "remoteCopySources": true,
  29. "rsyncCommandArgs": "-t --delete",
  30. "remoteCopyBuildOutput": false,
  31. "remoteCopySourcesMethod": "rsync",
  32. "intelliSenseMode": "linux-gcc-arm",
  33. "remoteCopyUseCompilerDefaults": true
  34. }
  35. ]
  36. }