This is a C++ library for conducting several basic text analysis methods - primarily for preprocessing a given std::string
.
Please read FEATURES.md for details on how to utilize this library.
The recommended/intended way to add this library to you project is by including the following to your CMakeLists.txt:
cmake_minimum_required(VERSION 3.13)
project(myProject)
include_directories("path/to/textalyzer/include")
add_subdirectory("path/to/textalyzer")
add_executable(myProject myProject_SOURCES)
# or `add_library(myProject myProject_SOURCES)`
target_link_libraries(myProject textalyzer)
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Patrick Cox - paddy74
This project is licensed under the MIT License - see the LICENSE.md file for details.