[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/gtl.cmake Normal file
View file

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

13
CMake/mio.cmake Normal file
View file

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

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()