cmake -DENABLE_COVERAGE=ON -DPLUGINS=ALL -DBINDINGS=ALL $WORKSPACE
Exclude Plugin haskell because haskell bindings are not included in the cmake configuration
Haskell should be included in BINDINGS=ALL
Haskell is not included in ALL
cmake -DENABLE_COVERAGE=ON -DPLUGINS=ALL -DBINDINGS="ALL;haskell" $WORKSPACE
Thank you for reporting!
Can you please also post the part why the haskell binding is excluded?
Can you please also post the part why the haskell binding is excluded?
It does not say, but from what I gathered it is just because it is not included in the BINDING=ALL target
@waht Can you fix that bindings print the reason for why they got excluded?
And why is the haskell binding excluded in this case? BINDING=ALL should also include experimental bindings, shouldn't it?
After having a fresh look at this I think it is actually working as expected.
Experimental should not be included in ALL.
No, ALL should include everything - I created PR #1894 to fix this.
There were two things wrong which I had changed but it seems like they were lost at some point (e.g. when merging):
add_binding () - this is the reason why there was no "Include Binding ..." message.BINDINGS variable directly (like we had before having categories for bindings)This is fixed already.
Most helpful comment
No, ALL should include everything - I created PR #1894 to fix this.
There were two things wrong which I had changed but it seems like they were lost at some point (e.g. when merging):
add_binding ()- this is the reason why there was no "Include Binding ..." message.BINDINGSvariable directly (like we had before having categories for bindings)