Multi packages workspace under WinROS
Hello guys,
I have a Hydro winros workspace containing three packages that are dependent.
The first one is a messages and services definition package called ros_msgs.
The second package contains several C++ abstract classes and depends on ros_msgs. It's called ros_radar.
The last one contains implementation classes and thus depend on ros_radar and transitively on ros_msgs.
My problem is that when I call winros_make, it fails after building DLLs with the following message:
NMAKE: fatal error U1073: Unable to find 'D:\Projects\Ros_project\overlay\devel\lib\ros_radar.lib
In fact, my devel folder only contains DLL for ros_radar.
Is there a special configuration parameter I forgot to use ?
As a note, the first two packages are already used under Ubuntu without any problems.