1
0
mirror of https://github.com/bshoshany/thread-pool.git synced 2026-07-21 19:13:00 +04:00

Updated to v5.0.0

This commit is contained in:
Barak Shoshany
2024-12-19 21:02:25 -05:00
parent 097aa718f2
commit aa3fbfbe80
28 changed files with 9217 additions and 2669 deletions
+110
View File
@@ -0,0 +1,110 @@
{
"configurations": [
{
"browse": {
"limitSymbolsToIncludedHeaders": true
},
"compilerArgs": [
"-stdlib=libc++"
],
"compilerPath": "/usr/bin/clang++",
"cppStandard": "c++17",
"cStandard": "c17",
"defines": [
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
],
"includePath": [
"${workspaceFolder}/**"
],
"intelliSenseMode": "linux-clang-x64",
"name": "Clang C++17"
},
{
"browse": {
"limitSymbolsToIncludedHeaders": true
},
"compilerArgs": [
"-stdlib=libc++"
],
"compilerPath": "/usr/bin/clang++",
"cppStandard": "c++20",
"cStandard": "c17",
"defines": [
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
],
"includePath": [
"${workspaceFolder}/**"
],
"intelliSenseMode": "linux-clang-x64",
"name": "Clang C++20"
},
{
"browse": {
"limitSymbolsToIncludedHeaders": true
},
"compilerArgs": [
"-stdlib=libc++"
],
"compilerPath": "/usr/bin/clang++",
"cppStandard": "c++23",
"cStandard": "c23",
"defines": [
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
],
"includePath": [
"${workspaceFolder}/**"
],
"intelliSenseMode": "linux-clang-x64",
"name": "Clang C++23"
},
{
"browse": {
"limitSymbolsToIncludedHeaders": true
},
"compilerPath": "/usr/bin/g++",
"cppStandard": "c++17",
"cStandard": "c17",
"defines": [
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
],
"includePath": [
"${workspaceFolder}/**"
],
"intelliSenseMode": "linux-gcc-x64",
"name": "GCC C++17"
},
{
"browse": {
"limitSymbolsToIncludedHeaders": true
},
"compilerPath": "/usr/bin/g++",
"cppStandard": "c++20",
"cStandard": "c17",
"defines": [
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
],
"includePath": [
"${workspaceFolder}/**"
],
"intelliSenseMode": "linux-gcc-x64",
"name": "GCC C++20"
},
{
"browse": {
"limitSymbolsToIncludedHeaders": true
},
"compilerPath": "/usr/bin/g++",
"cppStandard": "c++23",
"cStandard": "c23",
"defines": [
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
],
"includePath": [
"${workspaceFolder}/**"
],
"intelliSenseMode": "linux-gcc-x64",
"name": "GCC C++23"
}
],
"version": 4
}