Files
DualFloatingClock/.vscode/c_cpp_properties.json
T
2026-04-21 11:42:58 +08:00

46 lines
1.7 KiB
JSON

{
"configurations": [
{
"name": "macos-qt",
"includePath": [
"${workspaceFolder}/**",
"/opt/homebrew/opt/qt/include",
"/opt/homebrew/Cellar/qtbase/6.11.0/lib/QtCore.framework/Headers",
"/opt/homebrew/Cellar/qtbase/6.11.0/lib/QtGui.framework/Headers",
"/opt/homebrew/Cellar/qtbase/6.11.0/lib/QtWidgets.framework/Headers",
"/opt/homebrew/Cellar/qttools/6.11.0/include/QtUiPlugin",
"/opt/homebrew/Cellar/qtdeclarative/6.11.0/include/QtQmlDebug"
],
"defines": [],
"compilerPath": "/usr/bin/clang++",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "macos-clang-arm64",
"configurationProvider": "kylinideteam.cmake-intellisence",
"macFrameworkPath": [
"/opt/homebrew/Cellar/qtbase/6.11.0/lib",
"/System/Library/Frameworks"
]
},
{
"name": "win-qt",
"includePath": [
"${workspaceFolder}/**",
"${env:SCOOP}\\apps\\msys2-cn\\current\\ucrt64\\include",
"${env:SCOOP}\\apps\\msys2-cn\\current\\ucrt64\\include\\qt"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "${env:SCOOP}\\apps\\msys2-cn\\current\\ucrt64\\bin\\g++.exe",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "windows-gcc-x64",
"configurationProvider": "kylinideteam.cmake-intellisence"
}
],
"version": 4
}