-
Notifications
You must be signed in to change notification settings - Fork 111
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
CMake error on INSTALL(EXPORT ...) when adding the mqtt_cpp package with CPM.cmake #989
Comments
I'm not sure why it happens but #990 would solve the issue. Please try it. |
Installing mqtt_cpp#fix_989 works, thanks. I've provided more details as a comment on #990 . ... |
Thanks. I have no time to solve it serveral weeks, sorry. |
I got a time by chance, so I have fixed the CI issue. |
Thanks for you help and keep up the good work! |
Hi,
I've already opened a ticket on CPM.cmake regarding the issue below. Feel free to close this issue one if you think it is better to answer there.
With regard to the boost example in the CPM.cmake repository, I am trying to add a package right after the CPMAddPackage(NAME Boost ...) line:
set(MQTT_BUILD_EXAMPLES OFF CACHE BOOL "build mqtt_cpp examples" FORCE)
set(MQTT_BUILD_TESTS OFF CACHE BOOL "build mqtt_cpp tests" FORCE)
cpmaddpackage("gh:redboltz/mqtt_cpp#master")
However, I get this error when trying to build the project with cmake (from Ubuntu 22.04):
-- Configuring done
CMake Error: install(EXPORT "mqtt_cpp_ifaceTargets" ...) includes target "mqtt_cpp_iface" which requires target "boost_system" that is not in any export set.
CMake Error: install(EXPORT "mqtt_cpp_ifaceTargets" ...) includes target "mqtt_cpp_iface" which requires target "boost_date_time" that is not in any export set.
Do you know why this happens? It seems to me that the Boost targets do not get exported for some reasons.
Thanks in advance.
The text was updated successfully, but these errors were encountered: