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