mirror of
https://github.com/bshoshany/thread-pool.git
synced 2026-07-21 19:13:00 +04:00
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"compilerPath": "/usr/local/opt/llvm/bin/clang++",
|
|
"cppStandard": "c++17",
|
|
"cStandard": "c17",
|
|
"defines": [
|
|
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
|
|
],
|
|
"includePath": [
|
|
"${workspaceFolder}/**"
|
|
],
|
|
"intelliSenseMode": "macos-clang-x64",
|
|
"name": "Clang C++17"
|
|
},
|
|
{
|
|
"compilerPath": "/usr/local/opt/llvm/bin/clang++",
|
|
"cppStandard": "c++20",
|
|
"cStandard": "c17",
|
|
"defines": [
|
|
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
|
|
],
|
|
"includePath": [
|
|
"${workspaceFolder}/**"
|
|
],
|
|
"intelliSenseMode": "macos-clang-x64",
|
|
"name": "Clang C++20"
|
|
},
|
|
{
|
|
"compilerPath": "/usr/local/opt/llvm/bin/clang++",
|
|
"cppStandard": "c++23",
|
|
"cStandard": "c23",
|
|
"defines": [
|
|
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
|
|
],
|
|
"includePath": [
|
|
"${workspaceFolder}/**"
|
|
],
|
|
"intelliSenseMode": "macos-clang-x64",
|
|
"name": "Clang C++23"
|
|
}
|
|
],
|
|
"version": 4
|
|
}
|