Implementation of double-array structure for representing trie
Run the following Vcpkg command to install the port.
vcpkg install libdatrie
The package libdatrie can be used via CMake:
find_path(LIBDATRIE_INCLUDE_DIR datrie/trie.h) find_library(LIBDATRIE_LIBRARY NAMES datrie) target_include_directories(main PRIVATE "${LIBDATRIE_INCLUDE_DIR}") target_link_libraries(main PRIVATE "${LIBDATRIE_LIBRARY}")
The package libdatrie can be imported via CMake FindPkgConfig module:
find_package(PkgConfig) pkg_check_modules(LIBDATRIE REQUIRED IMPORTED_TARGET datrie-0.2) target_link_libraries(main PRIVATE PkgConfig::LIBDATRIE)
Build the trietool application
v0.2.13#1
Mar 23, 2022
All
tlwg/libdatrie147
linux.thai.net/pub/ThaiLinux/software/libthai
9958c2cac3
LGPL-2.1-or-later
Manifest