Browse Source

libcaption: Fix header missing in install

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

fixes #3925
Kurt Kartaltepe 4 years ago
parent
commit
bde5d11100
1 changed files with 1 additions and 0 deletions
  1. 1 0
      deps/libcaption/CMakeLists.txt

+ 1 - 0
deps/libcaption/CMakeLists.txt

@@ -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)