abacus/src/abacus.cc
Bruno BELANYI 171ef10a6d
All checks were successful
continuous-integration/drone/push Build is passing
abacus: fix include directories
This cleans up one of my major pain points with the Meson way of doing
things.

The Meson solution to have nice includes would have been to create an
`include/<name>` directory per library I create...
2021-09-01 19:43:02 +02:00

10 lines
151 B
C++

#include "parse/parser-driver.hh"
int main() {
abacus::parse::ParserDriver driver{};
driver.parse("-");
std::cout << driver.result();
}