Update cmakepreset.json to use clang with ninja by default

This commit is contained in:
Srihari-mcw 2024-11-26 07:24:29 -08:00
parent f112d198cd
commit 9d87c69649

View file

@ -11,6 +11,19 @@
"CMAKE_INSTALL_RPATH": "$ORIGIN;$ORIGIN/.."
}
},
{
"name": "clang-ninja",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_C_COMPILER":"clang.exe",
"CMAKE_CXX_COMPILER":"clang++.exe",
"CMAKE_INSTALL_RPATH": "$ORIGIN;$ORIGIN/.."
}
},
{
"name": "sycl-base",
"hidden": true,