File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ project(experimental_json_builder
88 LANGUAGES CXX
99)
1010
11-
12-
1311option (SIMDJSON_SERIALIZER_SANITIZE_MEMORY "Sanitize memory" OFF )
1412
1513if (SIMDJSON_SERIALIZER_SANITIZE_MEMORY)
@@ -52,9 +50,11 @@ target_include_directories(
5250)
5351
5452include (cmake/CPM.cmake )
55- # include simdjson
56- CPMAddPackage ("gh:simdjson/simdjson@3.9.4" )
57-
53+ CPMAddPackage (
54+ NAME simdjson
55+ GITHUB_REPOSITORY the-moisrex/simdjson-custom-types
56+ GIT_TAG builder_development_branch
57+ ) # include simdjson
5858
5959add_subdirectory (examples )
6060add_subdirectory (benchmarks )
Original file line number Diff line number Diff line change @@ -6,3 +6,8 @@ target_link_libraries(example PRIVATE simdjson::serialization simdjson::simdjson
66
77add_executable (example2 example2.cpp )
88target_link_libraries (example2 PRIVATE simdjson::serialization simdjson::simdjson )
9+
10+ add_executable (example3 example3.cpp )
11+ target_link_libraries (example3 PRIVATE simdjson::serialization simdjson::simdjson )
12+
13+
You can’t perform that action at this time.
0 commit comments