-
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.
- Loading branch information
1 parent
a8e4243
commit 86dee5c
Showing
9 changed files
with
46 additions
and
50 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ on: | |
branches: | ||
- main | ||
- develop | ||
- dev/** | ||
pull_request: | ||
branches: | ||
- main | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
branches: | ||
- main | ||
- develop | ||
- compatiblity_test* | ||
- dev/** | ||
pull_request: | ||
branches: | ||
- main | ||
|
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ on: | |
branches: | ||
- main | ||
- develop | ||
- dev/** | ||
pull_request: | ||
branches: | ||
- main | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
branches: | ||
- main | ||
- develop | ||
- msvc_test | ||
- dev/** | ||
pull_request: | ||
branches: | ||
- main | ||
|
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 was deleted.
Oops, something went wrong.
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,39 @@ | ||
include(cmake/CPM.cmake) | ||
|
||
CPMAddPackage( | ||
NAME glaze | ||
GIT_TAG v2.9.5.mod | ||
GITHUB_REPOSITORY huangminghuang/glaze | ||
) | ||
|
||
CPMAddPackage( | ||
NAME is_utf8 | ||
VERSION 1.3.2 | ||
GITHUB_REPOSITORY simdutf/is_utf8 | ||
DOWNLOAD_ONLY ON | ||
) | ||
|
||
add_subdirectory(${is_utf8_SOURCE_DIR}/src ${is_utf8_BINARY_DIR}) | ||
|
||
if(HPP_PROTO_TESTS) | ||
CPMAddPackage( | ||
NAME ut | ||
GITHUB_REPOSITORY boost-ext/ut | ||
VERSION 2.0.1 | ||
DOWNLOAD_ONLY ON | ||
) | ||
add_library(Boost::ut INTERFACE IMPORTED) | ||
target_include_directories(Boost::ut INTERFACE ${ut_SOURCE_DIR}/include) | ||
target_compile_definitions(Boost::ut INTERFACE BOOST_UT_DISABLE_MODULE) | ||
endif() | ||
|
||
if(HPP_PROTO_BENCHMARKS) | ||
CPMAddPackage( | ||
NAME benchmark | ||
GITHUB_REPOSITORY google/benchmark | ||
VERSION 1.8.3 | ||
OPTIONS | ||
"BENCHMARK_ENABLE_TESTING OFF" | ||
"BENCHMARK_ENABLE_INSTALL OFF" | ||
) | ||
endif() |
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