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
I am trying to setup the "adder_tests" example. I created a module which defines the adder_type in ./src and the following meson.build file, which is a bit different than the one in the repo because of the zofu library location.
It looks like the main thing you are doing differently is locating the Zofu library, using cmplr.find_library() instead of declaring Zofu as a dependency using zofu = dependency('zofu'). And the fact that it is complaining about not finding the Zofu module suggests that the way you're trying to do it isn't working.
I don't quite understand what is preventing you from using dependency(). Can pkg-config not find Zofu if you do it that way? If so is that just a matter of setting $PKG_CONFIG_PATH so it can find the Zofu pkg-config file?
I am trying to setup the "adder_tests" example. I created a module which defines the adder_type in ./src and the following meson.build file, which is a bit different than the one in the repo because of the zofu library location.
I then call
The first command succeeds, but ninja fails as follows
I am wondering what is the correct way to solve this.
The text was updated successfully, but these errors were encountered: