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
All the root*dir logic is unnecessary. Subprojects inherit the standard directories from the root project. I don't really know why there is an iniparserdir option. Please remove it because if I have a prefix in the root project of /opt/cxl-reskit, then Meson fails looking for the iniparser headers in /opt/cxl-reskit/include because the prefix doesn't exist.
All the
root*dir
logic is unnecessary. Subprojects inherit the standard directories from the root project. I don't really know why there is aniniparserdir
option. Please remove it because if I have a prefix in the root project of/opt/cxl-reskit
, then Meson fails looking for the iniparser headers in/opt/cxl-reskit/include
because the prefix doesn't exist.You are effectively making
-Dsystemd
a boolean instead of a feature with this logic.Please use
meson.override_find_program()
andmeson.override_dependency()
as necessary for an binaries and dependencies.These are just a few issues that I have had trying to consume this build system.
The text was updated successfully, but these errors were encountered: