-
I want to install the dependencies of my application alongside the binaries with CMake. Example cmake command:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Have you tried not installing HPX explicitly at all? I'm assuming you're using fetchcontent (or similar) in your project, and HPX knows how to install itself (it issues those
and building the As a side note, please consider using the CMake targets provided by HPX, not the macros. We're planning to remove the macros sooner or later. |
Beta Was this translation helpful? Give feedback.
-
Finally found an experimental feature in vcpkg: |
Beta Was this translation helpful? Give feedback.
Finally found an experimental feature in vcpkg:
set(X_VCPKG_APPLOCAL_DEPS_INSTALL ON)
Also asked here: [https://github.com/microsoft/vcpkg/discussions/20526]
Also see [https://github.com/microsoft/vcpkg/issues/1653]