[Megane] Add tiny library to translate utf8 characters to kvg code

This commit is contained in:
TennesseeTrash 2025-06-14 13:19:47 +02:00
parent 4943f35d91
commit 3b5eb6f1a4
8 changed files with 145 additions and 0 deletions

13
CMake/simdjson.cmake Normal file
View file

@ -0,0 +1,13 @@
if(NOT TARGET simdjson)
include(FetchContent)
FetchContent_Declare(
simdjson
GIT_REPOSITORY https://code.3011.io/Mirrors/simdjson
GIT_TAG v3.13.0
)
FetchContent_MakeAvailable(
simdjson
)
endif()