Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 327 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 327 Bytes

libml

yet another C++ machine learning library

# make build directory
mkdir build && cd build
# generate cmake files
cmake ..
# build library and tests
cmake --build . --target libml-test
# run tests
ctest --verbose --build-config "Debug"
# install library (currently only local)
cmake --build . --target install