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
The exported INCLUDE path is ${CMAKE_INSTALL_INCLUDEDIR}/azureiot, however the FILE INSTALL path is ${CMAKE_INSTALL_INCLUDEDIR}/azure_c_shared_utility. It is cause the project relying on it has cmake problem:
CMake Error in core/CMakeLists.txt:
Imported target "aziotsharedutil" includes non-existent path
"/home/Kevin/sdk/external/iot-edge-v1/v1/install-deps/include/azureiot"
in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include:
* The path was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and references files it does not
provide.
The exported INCLUDE path is
${CMAKE_INSTALL_INCLUDEDIR}/azureiot
, however the FILE INSTALL path is${CMAKE_INSTALL_INCLUDEDIR}/azure_c_shared_utility
. It is cause the project relying on it has cmake problem:The code:
In old version, it was:
install (FILES ${source_h_files} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/azureiot/azure_c_shared_utility)
The text was updated successfully, but these errors were encountered: