forked from stlab/libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/sean-parent/stlab-libraries
- Loading branch information
Showing
761 changed files
with
7,661 additions
and
10,128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Checks: > | ||
cert-*, | ||
performance-*, | ||
modernize-*, | ||
misc-include-cleaner, | ||
-readability-identifier-length, | ||
-readability-magic-numbers, | ||
-cppcoreguidelines-avoid-magic-numbers | ||
CheckOptions: | ||
# example of setting a check option | ||
- key: readability-identifier-length.MinLength | ||
value: 3 | ||
- key: misc-include-cleaner.IgnoreHeaders | ||
value: > | ||
boost/test/.*; | ||
__chrono/.*; | ||
boost/multiprecision/.* | ||
HeaderFilterRegex: "^.*\/stlab\/.*$" | ||
# WarningsAsErrors: "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
{ | ||
"config": [ | ||
{ | ||
"name": "Linux GCC 13", | ||
"compiler": "gcc", | ||
"version": "13", | ||
"os": "ubuntu-22.04" | ||
}, | ||
{ | ||
"name": "Linux Clang 15", | ||
"compiler": "clang", | ||
"version": "15", | ||
"os": "ubuntu-22.04" | ||
}, | ||
{ | ||
"name": "macOS apple-clang 15.1.0", | ||
"compiler": "apple-clang", | ||
"version": "15.1.0", | ||
"os": "macos-13" | ||
}, | ||
{ | ||
"name": "Windows VS2022", | ||
"compiler": "Visual Studio", | ||
"version": "17", | ||
"os": "windows-2022", | ||
"cmake_toolset": "Visual Studio 17 2022" | ||
}, | ||
{ | ||
"name": "Linux Webassembly", | ||
"compiler": "emscripten", | ||
"os": "ubuntu-22.04" | ||
} | ||
] | ||
"config": [ | ||
{ | ||
"name": "Linux GCC 13", | ||
"compiler": "gcc", | ||
"version": "13", | ||
"os": "ubuntu-24.04" | ||
}, | ||
{ | ||
"name": "Linux Clang 15", | ||
"compiler": "clang", | ||
"version": "15", | ||
"os": "ubuntu-22.04" | ||
}, | ||
{ | ||
"name": "macOS apple-clang 15.1.0", | ||
"compiler": "apple-clang", | ||
"version": "15.1.0", | ||
"os": "macos-13" | ||
}, | ||
{ | ||
"name": "Windows VS2022", | ||
"compiler": "Visual Studio", | ||
"version": "17", | ||
"os": "windows-2022", | ||
"cmake_toolset": "Visual Studio 17 2022" | ||
}, | ||
{ | ||
"name": "Linux Webassembly", | ||
"compiler": "emscripten", | ||
"os": "ubuntu-22.04" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
{ | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 12, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "hyde-build-docs", | ||
"description": "Build documentation", | ||
"hidden": false, | ||
"binaryDir": "${sourceDir}/../build/hyde", | ||
"cacheVariables": { | ||
"CMAKE_CXX_STANDARD": "20", | ||
"BUILD_TESTING": "OFF", | ||
"STLAB_MAIN_EXECUTOR": "none", | ||
"STLAB_NO_STD_COROUTINES": "ON", | ||
"STLAB_TASK_SYSTEM": "portable", | ||
"STLAB_THREAD_SYSTEM": "pthread", | ||
"stlab.coverage": "OFF" | ||
} | ||
}, | ||
{ | ||
"name": "ninja-cpp20-debug-thread-undefined", | ||
"description": "Ninja Debug Build", | ||
"hidden": false, | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/../build/ninja-cpp20-debug-thread-undefined", | ||
"cacheVariables": { | ||
"CMAKE_CXX_STANDARD": "20", | ||
"CMAKE_BUILD_TYPE": "DEBUG", | ||
"BUILD_TESTING": "ON", | ||
"CMAKE_CXX_FLAGS": "-fsanitize=thread -fsanitize=undefined", | ||
"CMAKE_LINKER_FLAGS": "-fsanitize=thread -fsanitize=undefined" | ||
} | ||
}, | ||
{ | ||
"name": "ninja-cpp17-debug", | ||
"description": "Ninja Debug Build", | ||
"hidden": false, | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/../build/ninja-cpp17-debug", | ||
"cacheVariables": { | ||
"CMAKE_CXX_STANDARD": "17", | ||
"CMAKE_BUILD_TYPE": "DEBUG", | ||
"BUILD_TESTING": "ON", | ||
"CMAKE_VERBOSE_MAKEFILE": "ON" | ||
} | ||
}, | ||
{ | ||
"name": "ninja-cpp20-debug-address", | ||
"description": "Ninja Debug Build", | ||
"hidden": false, | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/../build/ninja-cpp20-debug-address", | ||
"cacheVariables": { | ||
"CMAKE_CXX_STANDARD": "20", | ||
"CMAKE_BUILD_TYPE": "DEBUG", | ||
"BUILD_TESTING": "ON", | ||
"CMAKE_CXX_FLAGS": "-fsanitize=address", | ||
"CMAKE_LINKER_FLAGS": "-fsanitize=address", | ||
"CMAKE_VERBOSE_MAKEFILE": "ON" | ||
} | ||
}, | ||
{ | ||
"name": "clang-tidy-fix", | ||
"hidden": false, | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/../build/clang-tidy-fix", | ||
"cacheVariables": { | ||
"CMAKE_CXX_STANDARD": "17", | ||
"CMAKE_BUILD_TYPE": "DEBUG", | ||
"BUILD_TESTING": "ON", | ||
"CMAKE_CXX_CLANG_TIDY": "clang-tidy;--fix" | ||
} | ||
}, | ||
{ | ||
"name": "clang-tidy-nofix", | ||
"hidden": false, | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/../build/clang-tidy-nofix", | ||
"cacheVariables": { | ||
"CMAKE_CXX_STANDARD": "17", | ||
"CMAKE_BUILD_TYPE": "DEBUG", | ||
"BUILD_TESTING": "ON", | ||
"CMAKE_CXX_CLANG_TIDY": "clang-tidy" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "clang-tidy-fix", | ||
"configurePreset": "clang-tidy-fix", | ||
"jobs": 1 | ||
}, | ||
{ | ||
"name": "clang-tidy-nofix", | ||
"configurePreset": "clang-tidy-nofix" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
.sass-cache/ | ||
_site/ | ||
build/ | ||
stlab/ | ||
boost/ | ||
boost.tgz | ||
*.bbprojectsettings | ||
*.bbprojectsettings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.2.2 | ||
3.3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.