CMakeSettings.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "buildCommandArgs": "",
  11. "ctestCommandArgs": ""
  12. },
  13. {
  14. "name": "x64-Release",
  15. "generator": "Ninja",
  16. "configurationType": "RelWithDebInfo",
  17. "buildRoot": "${projectDir}\\out\\build\\${name}",
  18. "installRoot": "${projectDir}\\out\\install\\${name}",
  19. "cmakeCommandArgs": "",
  20. "buildCommandArgs": "",
  21. "ctestCommandArgs": "",
  22. "inheritEnvironments": [ "msvc_x64_x64" ]
  23. },
  24. {
  25. "name": "Linux-GCC-Debug",
  26. "generator": "Unix Makefiles",
  27. "configurationType": "Debug",
  28. "cmakeExecutable": "cmake",
  29. "remoteCopySourcesExclusionList": [ ".vs", ".git", "out" ],
  30. "cmakeCommandArgs": "-DONNXRUNTIME_DIR=/data/linux/thirdpart/onnxruntime-linux-x64-1.14.1",
  31. "buildCommandArgs": "",
  32. "ctestCommandArgs": "",
  33. "inheritEnvironments": [ "linux_x64" ],
  34. "remoteMachineName": "${defaultRemoteMachineName}",
  35. "remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src",
  36. "remoteBuildRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/out/build/${name}",
  37. "remoteInstallRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/out/install/${name}",
  38. "remoteCopySources": true,
  39. "rsyncCommandArgs": "-t --delete",
  40. "remoteCopyBuildOutput": false,
  41. "remoteCopySourcesMethod": "rsync"
  42. }
  43. ]
  44. }