Open dcbaker opened 8 months ago
Thanks, I know nothing about Meson so if it builds then it looks good to me. I just don't see the main unit tests being built and run.
You're right! I'm not sure how I missed adding that. the latest version has that tested added.
Does this run the tests?
It looks like it builds the tests but doesn't run them. I think it would be good to run them as well.
Yeah, i think it should be running them, but it doesn't. I'm not sure if it's a GitHub configuration issue or something in the Meson. I haven't had time to look this week, but I'm hoping to on Monday
Meson, Like CMake and Bazel, is a modern build system supporting C++ with the ability to configure and build dependencies from source. To do this effectively, it needs native Meson build definitions for the project to be built. This PR adds those definitions with as much parity to the C++ build system as possible, with the exception of the generation of the CMake configuration files (Meson cannot generate sophisticated ones using targets), and without some of the tests, since one is for CMake files it doesn't generate, and the other is for fuzzing, which is still a painful experience in Meson.
I've provided CI jobs, but much more minimal ones than what CMake runs.
This change is