mirror of
https://github.com/bshoshany/thread-pool.git
synced 2026-07-31 07:53:00 +04:00
Updated to v5.1.0
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
|
||||
],
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**"
|
||||
"${workspaceFolder}/include"
|
||||
],
|
||||
"intelliSenseMode": "macos-clang-x64",
|
||||
"name": "Clang C++17"
|
||||
@@ -21,7 +21,7 @@
|
||||
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
|
||||
],
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**"
|
||||
"${workspaceFolder}/include"
|
||||
],
|
||||
"intelliSenseMode": "macos-clang-x64",
|
||||
"name": "Clang C++20"
|
||||
@@ -34,7 +34,7 @@
|
||||
"BS_THREAD_POOL_NATIVE_EXTENSIONS"
|
||||
],
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**"
|
||||
"${workspaceFolder}/include"
|
||||
],
|
||||
"intelliSenseMode": "macos-clang-x64",
|
||||
"name": "Clang C++23"
|
||||
|
||||
+32
-32
@@ -1,32 +1,32 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}${/}build",
|
||||
"name": "Build and debug (Clang C++17)",
|
||||
"preLaunchTask": "Build for debugging (Clang C++17)",
|
||||
"program": "${workspaceFolder}${/}build${/}${fileBasenameNoExtension}_debug-clang-cpp17",
|
||||
"request": "launch",
|
||||
"type": "lldb"
|
||||
},
|
||||
{
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}${/}build",
|
||||
"name": "Build and debug (Clang C++20)",
|
||||
"preLaunchTask": "Build for debugging (Clang C++20)",
|
||||
"program": "${workspaceFolder}${/}build${/}${fileBasenameNoExtension}_debug-clang-cpp20",
|
||||
"request": "launch",
|
||||
"type": "lldb"
|
||||
},
|
||||
{
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}${/}build",
|
||||
"name": "Build and debug (Clang C++23)",
|
||||
"preLaunchTask": "Build for debugging (Clang C++23)",
|
||||
"program": "${workspaceFolder}${/}build${/}${fileBasenameNoExtension}_debug-clang-cpp23",
|
||||
"request": "launch",
|
||||
"type": "lldb"
|
||||
}
|
||||
],
|
||||
"version": "0.2.0"
|
||||
}
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}${/}build",
|
||||
"name": "Build and debug (Clang C++17)",
|
||||
"preLaunchTask": "Build for debugging (Clang C++17)",
|
||||
"program": "${workspaceFolder}${/}build${/}${fileBasenameNoExtension}_debug-clang-cpp17",
|
||||
"request": "launch",
|
||||
"type": "lldb"
|
||||
},
|
||||
{
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}${/}build",
|
||||
"name": "Build and debug (Clang C++20)",
|
||||
"preLaunchTask": "Build for debugging (Clang C++20)",
|
||||
"program": "${workspaceFolder}${/}build${/}${fileBasenameNoExtension}_debug-clang-cpp20",
|
||||
"request": "launch",
|
||||
"type": "lldb"
|
||||
},
|
||||
{
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}${/}build",
|
||||
"name": "Build and debug (Clang C++23)",
|
||||
"preLaunchTask": "Build for debugging (Clang C++23)",
|
||||
"program": "${workspaceFolder}${/}build${/}${fileBasenameNoExtension}_debug-clang-cpp23",
|
||||
"request": "launch",
|
||||
"type": "lldb"
|
||||
}
|
||||
],
|
||||
"version": "0.2.0"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"C_Cpp.codeAnalysis.exclude": {
|
||||
"misc/**": true,
|
||||
"temp/**": true
|
||||
}
|
||||
}
|
||||
@@ -236,8 +236,9 @@
|
||||
},
|
||||
{
|
||||
"args": [
|
||||
"scripts/clear_folder.py",
|
||||
"../build"
|
||||
"scripts/compile_cpp.py",
|
||||
"-b",
|
||||
"-v"
|
||||
],
|
||||
"command": "python3",
|
||||
"detail": "Delete all files in the build folder.",
|
||||
@@ -256,13 +257,16 @@
|
||||
},
|
||||
{
|
||||
"args": [
|
||||
"scripts/clear_folder.py",
|
||||
"../temp"
|
||||
"scripts/compile_cpp.py",
|
||||
"${file}",
|
||||
"-t=release",
|
||||
"-y",
|
||||
"-v"
|
||||
],
|
||||
"command": "python3",
|
||||
"detail": "Delete all files in the temp folder.",
|
||||
"detail": "Compile active file using all available compilers and all relevant C++ standards with warning and optimization flags.",
|
||||
"group": "test",
|
||||
"label": "Clear temp folder",
|
||||
"label": "Build all optimized (all compilers and standards)",
|
||||
"presentation": {
|
||||
"clear": false,
|
||||
"echo": true,
|
||||
@@ -276,12 +280,17 @@
|
||||
},
|
||||
{
|
||||
"args": [
|
||||
"scripts/test_all.py"
|
||||
"scripts/compile_cpp.py",
|
||||
"${file}",
|
||||
"-t=release",
|
||||
"-y",
|
||||
"-r",
|
||||
"-v"
|
||||
],
|
||||
"command": "python3",
|
||||
"detail": "Compile and run the test program with all available compilers and all relevant C++ standards.",
|
||||
"detail": "Compile active file using all available compilers and all relevant C++ standards with warning and optimization flags and run the program.",
|
||||
"group": "test",
|
||||
"label": "Run all tests",
|
||||
"label": "Build all optimized and run (all compilers and standards)",
|
||||
"presentation": {
|
||||
"clear": false,
|
||||
"echo": true,
|
||||
|
||||
Reference in New Issue
Block a user