libsimple 0.9.0

Rust bindings to simple, a SQLite3 fts5 tokenizer which supports Chinese and PinYin.
1
2
3
4
5
6
7
8
9
cmake_minimum_required(VERSION 3.19)
project(simple_cpp_example)

include_directories(${SQLITE3_HEADERS_DIR})
set(SOURCE_FILES main.cc)

add_executable(simple_cpp_example ${SOURCE_FILES})
target_link_libraries(simple_cpp_example PUBLIC SQLite3)
install(TARGETS simple_cpp_example DESTINATION bin)