Release v0.0.10
Overview
This release includes dotgrammar.so in the distribution and updates the installation documentation accordingly.
What’s New
- Added
libdotgrammar.soto distribution tarballs. - System-wide installation now installs grammar library to
/usr/local/lib/. - Updated build commands now requires to link
-ldotgrammar.
Breaking Changes
None.
Migration Notes
Update your compilation commands to include
-ldotgrammar# System-wide installation g++ -o yourprogram yourprogram.cpp -ldotjson -ldotjsoncpp -ldotgrammar -Wall -Wextra -std=c++20 -O3 # Project-local installation g++ -o yourprogram yourprogram.cpp -I. -L./dottxt/dotjson/lib -ldotjson -ldotjsoncpp -ldotgrammar -Wall -Wextra -std=c++20 -O3 -Wl,-rpath,\$ORIGIN/dottxt/dotjson/lib