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