Closed SylvainCorlay closed 1 year ago
The issue is on the test executable, which is not linked against xeus-zmq, not the kernel itself (which seems to be built correctly).
EDIT: from the build logs, looks like the kernel is also failing to build/
It seems that e're missing a find_dependency(xeus_zmq)
in xeus-pythonConfig.cmake
. A workaround would be to call find_package(xeus-zmq)
in the CMakeLists.txt of xeus-robot.
It seems that would need to link the executable with Zeromq, although I presume this should be achieved transitively by have the
target_link_libraries
to xeus-zmq be PUBLIC. Thoughts @JohanMabille ?