You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For build system integration, I recommend CMake. It's used in most (warning: unscientific claim) open source C++ projects, people generally know how to make it do what they want it to do, and it's easy to work into continuous integration services and testing frameworks.
For unit testing, I personally almost always use googletest, but there's overhead there I don't think is worth taking on for such a small library. The alternative I see most often is Catch, which is a header-only testing framework.
I've used google-test successfully before, so I don't mind it much. I imagine most of the tests for this project should be written with static_asserts though (so no generated code!).
I've heard good things about catch as well though!
As far as make systems, I've got no experience whatsoever with anything but scons (though not a proponent at all) and make (though I have little/no ability in it!).
If you/someone submits even a passable make system, I'd very happily accept it, and be grateful for the contribution.
No description provided.
The text was updated successfully, but these errors were encountered: