Initial commit.

Implement unaccent, normalize.
This commit is contained in:
Saleem Edah-Tally
2023-09-30 17:51:15 +02:00
commit 48269db50b
2 changed files with 241 additions and 0 deletions

10
CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.5)
project(u7)
add_executable(utf8util main.cpp)
install(TARGETS utf8util RUNTIME DESTINATION bin)
target_link_libraries(utf8util utf8proc)