-
Notifications
You must be signed in to change notification settings - Fork 139
Description
Most includes seem to use an absolute path (starting with "rfl/...") with some exceptions I found:
- from_named_tuple.hpp
- fields.hpp
- Validator.hpp
- Timestamp.hpp
- PatternValidator.hpp
- Literal.hpp
which have some relative paths defined as well (might wanna unify that).
However I think this makes it a bit harder to include the library just for some quick testing as you have to specify an include directory (which you'd probably do for production anyways though ofc).
For me I like to try out new (header-only) libraries by just git init
and git submodule add https://github.com/getml/reflect-cpp libs/reflect-cpp
and using it in a simple main.cpp with #include "libs/reflect-cpp/include/rfl.hpp"
, running clang/gcc for compilation directly.
This doesn't work with these absolute paths though as:
rfl.hpp
includes rfl/AllOf.hpp
(fine so far) which then includes rfl/Result.hpp
which is at the same level, as we are already in the rfl
directory. So the include trying to go into rfl
a level deeper doesn't work unless I add libs/reflect-cpp/include/
as an include directory (compiling with g++ -std=c++20 -I ./libs/reflect-cpp/include/ main.cpp
), so it can always go "back" into the include directories root rfl
-directory while with relative paths it should just work right out of the box without that.
also the described way to
Simply copy the contents of the folder include into your source repository OR add it to your include path.
doesn't quite work due to this (unless the 'OR' is meant to be an 'and' instead).
Not a big deal of course and relative paths have their cons while absolute paths have their pros, so you might wanna consider changing it but it's fine if you don't.
btw., that's a cool and useful library, definitely gonna consider using it for future projects. :)