CMakeSettings.json 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "configurations": [
  3. {
  4. "name": "x86-Release",
  5. "generator": "Visual Studio 16 2019",
  6. "configurationType": "Release",
  7. "buildRoot": "${projectDir}\\out\\build\\${name}",
  8. "installRoot": "${projectDir}\\out\\install\\${name}",
  9. "cmakeCommandArgs": "-D BUILD_TESTING=OFF",
  10. "buildCommandArgs": "",
  11. "ctestCommandArgs": "-C Release",
  12. "inheritEnvironments": [ "msvc_x86" ]
  13. },
  14. {
  15. "name": "ARM64-GCC-Debug",
  16. "generator": "Unix Makefiles",
  17. "configurationType": "Debug",
  18. "cmakeExecutable": "cmake",
  19. "remoteCopySourcesExclusionList": [ ".vs", ".git", "out" ],
  20. "cmakeCommandArgs": "-D BUILD_TESTING=OFF -D WITH_CI_NUMBER=OFF -D SIMULATE_ON=OFF -D BUILD_DEVADAPTER=ON",
  21. "buildCommandArgs": "",
  22. "ctestCommandArgs": "--output-on-failure",
  23. "inheritEnvironments": [ "linux_arm" ],
  24. "remoteMachineName": "${defaultRemoteMachineName}",
  25. "remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/src",
  26. "remoteBuildRoot": "$HOME/.vs/${projectDirName}/out/build/${name}",
  27. "remoteInstallRoot": "$HOME/.vs/${projectDirName}/out/install/${name}",
  28. "remoteCopySources": true,
  29. "rsyncCommandArgs": "-t --delete --delete-excluded --exclude \"/build\" --exclude \"/out\" --exclude-from=.gitignore",
  30. "remoteCopyBuildOutput": false,
  31. "remoteCopySourcesMethod": "rsync",
  32. "addressSanitizerRuntimeFlags": "detect_leaks=0",
  33. "variables": [
  34. {
  35. "name": "SIMULATE_ON",
  36. "value": "False",
  37. "type": "BOOL"
  38. }
  39. ]
  40. },
  41. {
  42. "name": "ARM64-GCC-Release",
  43. "generator": "Unix Makefiles",
  44. "configurationType": "Release",
  45. "cmakeExecutable": "cmake",
  46. "remoteCopySourcesExclusionList": [ ".vs", ".git", "out" ],
  47. "cmakeCommandArgs": "-D BUILD_TESTING=OFF",
  48. "buildCommandArgs": "",
  49. "ctestCommandArgs": "--output-on-failure",
  50. "inheritEnvironments": [ "linux_arm" ],
  51. "variables": [
  52. {
  53. "name": "SIMULATE_ON",
  54. "value": "False",
  55. "type": "BOOL"
  56. },
  57. {
  58. "name": "DEVOPS_INSTALL_SWITCH",
  59. "value": "False",
  60. "type": "BOOL"
  61. }
  62. ],
  63. "remoteMachineName": "${defaultRemoteMachineName}",
  64. "remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/src",
  65. "remoteBuildRoot": "$HOME/.vs/${projectDirName}/out/build/${name}",
  66. "remoteInstallRoot": "$HOME/.vs/${projectDirName}/out/install/${name}",
  67. "remoteCopySources": true,
  68. "rsyncCommandArgs": "-t --delete --delete-excluded --exclude \"/build\" --exclude \"/out\" --exclude-from=.gitignore",
  69. "remoteCopyBuildOutput": false,
  70. "remoteCopySourcesMethod": "rsync",
  71. "addressSanitizerRuntimeFlags": "detect_leaks=0"
  72. },
  73. {
  74. "name": "x86-ReleaseWithNinja",
  75. "generator": "Ninja",
  76. "configurationType": "Release",
  77. "buildRoot": "${projectDir}\\out\\build\\${name}",
  78. "installRoot": "${projectDir}\\out\\install\\${name}",
  79. "cmakeCommandArgs": "",
  80. "buildCommandArgs": "",
  81. "ctestCommandArgs": "",
  82. "inheritEnvironments": [ "msvc_x86" ]
  83. }
  84. ]
  85. }