1. Home
  2. Browse
  3. libdatrie

libdatrie

v0.2.13#1Latest

Implementation of double-array structure for representing trie

Install

Run the following Vcpkg command to install the port.

vcpkg install libdatrie

Usage

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)

Features

Dependencies

See source

Version

v0.2.13#1

Publication

Supports

All

GitHub

tlwg/libdatrie

Homepage

linux.thai.net/pub/ThaiLinux/software/libthai

Subtree

9958c2cac3

License

LGPL-2.1-or-later

Definition

Manifest