-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Noa and JSON Toolkit to the latest versions
Signed-off-by: Juan Cruz Viotti <[email protected]>
- Loading branch information
Showing
561 changed files
with
128,212 additions
and
3,263 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
vendorpull https://github.com/sourcemeta/vendorpull 70342aaf458e6cb80baeb5b718901075fc42ede6 | ||
jsontoolkit https://github.com/sourcemeta/jsontoolkit 93a921d0f1e99bfdfe14bfd4d2acf5981294080b | ||
alterschema https://github.com/sourcemeta/alterschema 0fcd3b3b921bd47dc0867477619383f6519939fa | ||
googletest https://github.com/google/googletest 987e225614755fec7253aa95bf959c09e0d380d7 | ||
noa https://github.com/sourcemeta/noa a8d36453236abc365f08a76a486f92c84f976fd9 | ||
jsontoolkit https://github.com/sourcemeta/jsontoolkit 60a3862ad0d9642c97685f94aeaed96ab3509690 | ||
alterschema https://github.com/sourcemeta/alterschema 3579095980f5d53033a457725dd95eca27de96f4 | ||
bootstrap https://github.com/twbs/bootstrap 1a6fdfae6be09b09eaced8f0e442ca6f7680a61e | ||
noa https://github.com/sourcemeta/noa 924f5cc8549af7f12227869dcbab4259029ac650 |
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,12 @@ | ||
if(NOT Noa_FOUND) | ||
if(JSONBINPACK_INSTALL) | ||
set(NOA_INSTALL ON CACHE BOOL "enable Noa installation") | ||
else() | ||
set(NOA_INSTALL OFF CACHE BOOL "disable Noa installation") | ||
endif() | ||
|
||
set(NOA_GOOGLETEST ${JSONBINPACK_TESTS} CACHE BOOL "GoogleTest") | ||
set(NOA_GOOGLEBENCHMARK OFF CACHE BOOL "GoogleBenchmark") | ||
add_subdirectory("${PROJECT_SOURCE_DIR}/vendor/noa") | ||
set(Noa_FOUND ON) | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,23 @@ | ||
add_executable(sourcemeta_jsonbinpack_compiler_unit | ||
canonicalizer_test.cc compiler_test.cc | ||
noa_googletest(NAMESPACE sourcemeta PROJECT jsonbinpack NAME compiler | ||
FOLDER "JSON BinPack/Compiler" | ||
SOURCES | ||
canonicalizer_test.cc compiler_test.cc | ||
|
||
2020_12_canonicalizer_any_test.cc | ||
2020_12_canonicalizer_array_test.cc | ||
2020_12_canonicalizer_boolean_test.cc | ||
2020_12_canonicalizer_null_test.cc | ||
2020_12_canonicalizer_number_test.cc | ||
2020_12_canonicalizer_object_test.cc | ||
2020_12_canonicalizer_string_test.cc | ||
2020_12_canonicalizer_any_test.cc | ||
2020_12_canonicalizer_array_test.cc | ||
2020_12_canonicalizer_boolean_test.cc | ||
2020_12_canonicalizer_null_test.cc | ||
2020_12_canonicalizer_number_test.cc | ||
2020_12_canonicalizer_object_test.cc | ||
2020_12_canonicalizer_string_test.cc | ||
|
||
2020_12_compiler_any_test.cc | ||
2020_12_compiler_integer_test.cc | ||
2020_12_compiler_number_test.cc) | ||
2020_12_compiler_any_test.cc | ||
2020_12_compiler_integer_test.cc | ||
2020_12_compiler_number_test.cc) | ||
|
||
noa_add_default_options(PRIVATE sourcemeta_jsonbinpack_compiler_unit) | ||
target_link_libraries(sourcemeta_jsonbinpack_compiler_unit | ||
PRIVATE GTest::gtest GTest::gtest_main) | ||
target_link_libraries(sourcemeta_jsonbinpack_compiler_unit | ||
PRIVATE sourcemeta::jsonbinpack::compiler) | ||
target_link_libraries(sourcemeta_jsonbinpack_compiler_unit | ||
PRIVATE sourcemeta::jsontoolkit::json) | ||
target_link_libraries(sourcemeta_jsonbinpack_compiler_unit | ||
PRIVATE sourcemeta::jsontoolkit::jsonschema) | ||
gtest_discover_tests(sourcemeta_jsonbinpack_compiler_unit) | ||
set_target_properties(sourcemeta_jsonbinpack_compiler_unit | ||
PROPERTIES FOLDER "JSON BinPack/Compiler") |
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,17 +1,11 @@ | ||
add_executable(sourcemeta_jsonbinpack_numeric_unit | ||
zigzag_test.cc | ||
closest_smallest_exponent_test.cc | ||
divide_ceil_test.cc | ||
divide_floor_test.cc | ||
uint_max_test.cc) | ||
noa_googletest(NAMESPACE sourcemeta PROJECT jsonbinpack NAME numeric | ||
FOLDER "JSON BinPack/Numeric" | ||
SOURCES | ||
zigzag_test.cc | ||
closest_smallest_exponent_test.cc | ||
divide_ceil_test.cc | ||
divide_floor_test.cc | ||
uint_max_test.cc) | ||
|
||
noa_add_default_options(PRIVATE sourcemeta_jsonbinpack_numeric_unit) | ||
|
||
target_link_libraries(sourcemeta_jsonbinpack_numeric_unit | ||
PRIVATE GTest::gtest GTest::gtest_main) | ||
target_link_libraries(sourcemeta_jsonbinpack_numeric_unit | ||
PRIVATE sourcemeta::jsonbinpack::numeric) | ||
|
||
gtest_discover_tests(sourcemeta_jsonbinpack_numeric_unit) | ||
set_target_properties(sourcemeta_jsonbinpack_numeric_unit | ||
PROPERTIES FOLDER "JSON BinPack/Numeric") |
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,43 +1,37 @@ | ||
add_executable(sourcemeta_jsonbinpack_runtime_unit | ||
decode_any_test.cc | ||
decode_array_test.cc | ||
decode_integer_test.cc | ||
decode_number_test.cc | ||
decode_object_test.cc | ||
decode_string_test.cc | ||
decode_test.cc | ||
decode_traits_test.cc | ||
decode_utils.h | ||
encode_any_test.cc | ||
encode_array_test.cc | ||
encode_cache_test.cc | ||
encode_integer_test.cc | ||
encode_number_test.cc | ||
encode_object_test.cc | ||
encode_real_test.cc | ||
encode_string_test.cc | ||
encode_test.cc | ||
encode_traits_test.cc | ||
encode_utils.h | ||
input_stream_varint_test.cc | ||
output_stream_varint_test.cc | ||
encoding_traits_test.cc | ||
v1_loader_test.cc | ||
v1_any_loader_test.cc | ||
v1_array_loader_test.cc | ||
v1_integer_loader_test.cc | ||
v1_number_loader_test.cc | ||
v1_string_loader_test.cc) | ||
noa_googletest(NAMESPACE sourcemeta PROJECT jsonbinpack NAME runtime | ||
FOLDER "JSON BinPack/Runtime" | ||
SOURCES | ||
decode_any_test.cc | ||
decode_array_test.cc | ||
decode_integer_test.cc | ||
decode_number_test.cc | ||
decode_object_test.cc | ||
decode_string_test.cc | ||
decode_test.cc | ||
decode_traits_test.cc | ||
decode_utils.h | ||
encode_any_test.cc | ||
encode_array_test.cc | ||
encode_cache_test.cc | ||
encode_integer_test.cc | ||
encode_number_test.cc | ||
encode_object_test.cc | ||
encode_real_test.cc | ||
encode_string_test.cc | ||
encode_test.cc | ||
encode_traits_test.cc | ||
encode_utils.h | ||
input_stream_varint_test.cc | ||
output_stream_varint_test.cc | ||
encoding_traits_test.cc | ||
v1_loader_test.cc | ||
v1_any_loader_test.cc | ||
v1_array_loader_test.cc | ||
v1_integer_loader_test.cc | ||
v1_number_loader_test.cc | ||
v1_string_loader_test.cc) | ||
|
||
noa_add_default_options(PRIVATE sourcemeta_jsonbinpack_runtime_unit) | ||
|
||
target_link_libraries(sourcemeta_jsonbinpack_runtime_unit | ||
PRIVATE GTest::gtest GTest::gtest_main) | ||
target_link_libraries(sourcemeta_jsonbinpack_runtime_unit | ||
PRIVATE sourcemeta::jsonbinpack::runtime) | ||
target_link_libraries(sourcemeta_jsonbinpack_runtime_unit | ||
PRIVATE sourcemeta::jsontoolkit::json) | ||
|
||
gtest_discover_tests(sourcemeta_jsonbinpack_runtime_unit) | ||
set_target_properties(sourcemeta_jsonbinpack_runtime_unit | ||
PROPERTIES FOLDER "JSON BinPack/Runtime") |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.