mirror of
https://github.com/SysRay/psOff_public.git
synced 2024-11-23 14:29:39 +00:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"ccls.misc.compilationDatabaseDirectory": "_Build/_Release",
|
|
"ccls.clang.excludeArgsIsWhitelist": true,
|
|
"ccls.clang.excludeArgs": [
|
|
"-I*",
|
|
"-isystem*",
|
|
"-x*",
|
|
"-D*",
|
|
"/std*",
|
|
"-std:*",
|
|
"-f*"
|
|
],
|
|
"ccls.clang.extraArgs": [
|
|
"-fexceptions"
|
|
],
|
|
"ccls.index.threads": 0,
|
|
|
|
"cmake.generator": "Ninja",
|
|
"cmake.sourceDirectory": "${workspaceFolder}",
|
|
"cmake.buildDirectory": "${workspaceFolder}/_build/_Release",
|
|
"cmake.configureSettings": {
|
|
"CMAKE_BUILD_TYPE": "Release",
|
|
"CMAKE_INSTALL_PREFIX": "${workspaceFolder}/_build/_Install",
|
|
"CMAKE_C_COMPILER": "clang-cl.exe",
|
|
"CMAKE_CXX_COMPILER": "clang-cl.exe"
|
|
},
|
|
"C_Cpp.default.compilerPath": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\Llvm\\bin\\clang-cl.exe",
|
|
"C_Cpp.default.intelliSenseMode": "windows-clang-x64",
|
|
"C_Cpp.default.cppStandard": "c++20",
|
|
"C_Cpp.autoAddFileAssociations": false,
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true,
|
|
"git.ignoredRepositories": [
|
|
"third_party/boost",
|
|
"third_party/optick",
|
|
"third_party/magic_enum",
|
|
"third_party/SDL2",
|
|
"third_party/libpng"
|
|
]
|
|
}
|