Issue Description
In the file _cmake/YarpIDL.cmake_ line 171 (devel branch)
causes the installation of a _YarpIDL.cmake_ file that arises the following error when trying to compile other repositories that depend on Yarp package
when parsing string ^.+/([^\/]+)$ Invalid escape sequence \/
Solved by modifying the cmake file, hence substituting the aforementioned line with;
if(NOT _cpp_placement_ns)
string(REGEX REPLACE "^.+/([^/]+)$" "\\1" _dest_file "${_dest_file}")
endif()
and reinstall the header.
CC @nunoguedelha
@CarlottaSartore Thanks for debugging and taking time to open this issue.
Would you like to try and create a pull request to fix this issue?
@drdanz Created! https://github.com/robotology/yarp/pull/2110
Fixed by #2110
Most helpful comment
@drdanz Created! https://github.com/robotology/yarp/pull/2110