libcaption: Fix header missing in install

libobs directly depends on libcaption headers. So ensure they are
installed with obs' headers.

fixes #3925
This commit is contained in:
Kurt Kartaltepe 2021-01-27 22:23:27 -08:00 committed by Jim
parent d2ca8b5d90
commit bde5d11100

View file

@ -36,6 +36,7 @@ set(CAPTION_HEADERS
)
add_library(caption STATIC ${CAPTION_SOURCES})
install_obs_headers("caption/caption.h")
set_target_properties(caption PROPERTIES
FOLDER "deps"
POSITION_INDEPENDENT_CODE ON)