-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a44a1e8
commit 612324e
Showing
40 changed files
with
294 additions
and
200 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
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
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
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,38 @@ | ||
# Reduce verbosity of CMakeDeps conan generator | ||
# do not edit, regenerate with conan_quiet.sh | ||
|
||
set(ZLIB_FIND_QUIETLY YES) | ||
set(Catch2_FIND_QUIETLY YES) | ||
set(jwt-cpp_FIND_QUIETLY YES) | ||
set(GTest_FIND_QUIETLY YES) | ||
set(LibtorrentRasterbar_FIND_QUIETLY YES) | ||
set(Snappy_FIND_QUIETLY YES) | ||
set(Microsoft.GSL_FIND_QUIETLY YES) | ||
set(OpenSSL_FIND_QUIETLY YES) | ||
set(fmt_FIND_QUIETLY YES) | ||
set(roaring_FIND_QUIETLY YES) | ||
set(BZip2_FIND_QUIETLY YES) | ||
set(c-ares_FIND_QUIETLY YES) | ||
set(magic_enum_FIND_QUIETLY YES) | ||
set(absl_FIND_QUIETLY YES) | ||
set(OpenSSL_FIND_QUIETLY YES) | ||
set(tomlplusplus_FIND_QUIETLY YES) | ||
set(spdlog_FIND_QUIETLY YES) | ||
set(SQLite3_FIND_QUIETLY YES) | ||
set(CLI11_FIND_QUIETLY YES) | ||
set(tl-expected_FIND_QUIETLY YES) | ||
set(asio-grpc_FIND_QUIETLY YES) | ||
set(benchmark_FIND_QUIETLY YES) | ||
set(gmp_FIND_QUIETLY YES) | ||
set(Boost_FIND_QUIETLY YES) | ||
set(SQLite3_FIND_QUIETLY YES) | ||
set(mimalloc_FIND_QUIETLY YES) | ||
set(re2_FIND_QUIETLY YES) | ||
set(gRPC_FIND_QUIETLY YES) | ||
set(protobuf_FIND_QUIETLY YES) | ||
set(ZLIB_FIND_QUIETLY YES) | ||
set(Protobuf_FIND_QUIETLY YES) | ||
set(BZip2_FIND_QUIETLY YES) | ||
set(SQLiteCpp_FIND_QUIETLY YES) | ||
set(GTest_FIND_QUIETLY YES) | ||
set(nlohmann_json_FIND_QUIETLY YES) |
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,18 @@ | ||
#!/bin/bash | ||
|
||
script_dir=$(dirname "${BASH_SOURCE[0]}") | ||
project_dir="$script_dir/.." | ||
build_dir="$1" | ||
|
||
if [[ -z "$build_dir" ]] | ||
then | ||
build_dir="$project_dir/build" | ||
fi | ||
|
||
cat << EOF > "$script_dir/conan_quiet.cmake" | ||
# Reduce verbosity of CMakeDeps conan generator | ||
# do not edit, regenerate with conan_quiet.sh | ||
EOF | ||
|
||
grep -R FIND_QUIETLY "$build_dir/conan2" | sed -E 's/.+\((.+)\)/set(\1 YES)/' >> "$script_dir/conan_quiet.cmake" |
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,12 +1,8 @@ | ||
[settings] | ||
os=Linux | ||
os_build=Linux | ||
arch=armv8 | ||
arch_build=armv8 | ||
compiler=gcc | ||
compiler.version=12 | ||
compiler.libcxx=libstdc++11 | ||
compiler.cppstd=17 | ||
build_type=Debug | ||
[options] | ||
[build_requires] | ||
[env] |
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,12 +1,8 @@ | ||
[settings] | ||
os=Linux | ||
os_build=Linux | ||
arch=armv8 | ||
arch_build=armv8 | ||
compiler=gcc | ||
compiler.version=12 | ||
compiler.libcxx=libstdc++11 | ||
compiler.cppstd=17 | ||
build_type=Release | ||
[options] | ||
[build_requires] | ||
[env] |
Oops, something went wrong.