cmake: Fix missing interface include directory on Framework export

For exported targets `INCLUDES DESTINATION` behaves in a specific way
when running `install`: It sets the `INTERFACE_INCLUDE_DIRECTORY` for
the target (relative to the `INSTALL_PREFIX` when a relative path is
given).

This is not implicitly done by CMake, which resulted in the exported
libobs Framework to miss the variable and as such targets linking to
libobs were not able to find the necessary headers anymore.
master
PatTheMav 2022-08-20 11:27:53 +02:00 committed by Patrick Heyer
parent a7419a9809
commit 6c2860a4ec
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,8 @@ function(setup_framework_target target)
FRAMEWORK DESTINATION "Frameworks"
COMPONENT obs_libraries
EXCLUDE_FROM_ALL
INCLUDES
DESTINATION Frameworks/$<TARGET_FILE_BASE_NAME:${target}>.framework/Headers
PUBLIC_HEADER
DESTINATION
Frameworks/$<TARGET_FILE_BASE_NAME:${target}>.framework/Headers