-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compiling the unicycle footstep planner in windows #12
Comments
Exactly. See ros/urdfdom#42 for a similar issue. As documented in the
|
@mebbaid Feel free to open a PR with one or even better both of this changes, that @S-Dafarra can review and eventually accept. |
@traversaro maybe it is strange, but actually it compiled without errors, without having to remove |
The problem of the missing exported symbols was fixed by setting the |
Solved with #13 |
The following error is met:
This is basically due to the
CMakeLists.txt
looking for a.lib
extensions, becausetarget_link_libraries
doesn't find the associatedUnicyclePlanner.lib
. One reason would be, I suspect, that the declarative__declspec(dllexport)
was not used, and hence the project only builds the.dll
file.One can instead build the project as a static lib and in that case the above error will not be met, but I am not certain what are the implications of that.
The text was updated successfully, but these errors were encountered: