CMakePresets.json 410 B

12345678910111213141516
  1. {
  2. "version": 4,
  3. "configurePresets": [
  4. {
  5. "name": "tutorial",
  6. "displayName": "Tutorial Preset",
  7. "description": "Preset to use with the tutorial",
  8. "binaryDir": "${sourceDir}/build",
  9. "cacheVariables": {
  10. "TODO7": "Remove the CMAKE_CXX_STANDARD (and this TODO)",
  11. "CMAKE_CXX_STANDARD": "20",
  12. "TODO8": "Set TUTORIAL_USE_STD_SQRT to ON"
  13. }
  14. }
  15. ]
  16. }