You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
I am a member of the VCPKG project. I found that omplapp repeatedly builds "ompl" from the submodule instead of depends on the built libraries microsoft/vcpkg#40151.
I see that ompl/ompl#1066ompl/ompl#1067 adds the CMake targets ompl::ompl, which allow for convenient target_link_libraries(main PRIVATE ompl::ompl), but omplapp not uses it, and it bypasses ompl/CMakeLists.txt to compile its components like this omplapp/CMakeLists.txt#L252-L257:
I would like to ask if it is possible to modify omplapp to be a project that depends on ompl, rather than an ompl variant that shares a lot of code? This is very helpful to us, and I think this will also make it easier to develop omplapp.
If you have any questions please let me know. Thanks in advance.
Hi,
I am a member of the VCPKG project. I found that
omplapprepeatedly builds "ompl" from the submodule instead of depends on the built libraries microsoft/vcpkg#40151.I see that ompl/ompl#1066 ompl/ompl#1067 adds the CMake targets
ompl::ompl, which allow for convenienttarget_link_libraries(main PRIVATE ompl::ompl), but omplapp not uses it, and it bypassesompl/CMakeLists.txtto compile its components like this omplapp/CMakeLists.txt#L252-L257:And there are many different parts between the two files omplapp/CMakeLists.txt and ompl/CMakeLists.txt. Splitting the two projects need a lot of changes.
I would like to ask if it is possible to modify omplapp to be a project that depends on ompl, rather than an ompl variant that shares a lot of code? This is very helpful to us, and I think this will also make it easier to develop
omplapp.If you have any questions please let me know. Thanks in advance.