UI: Install public headers for frontend-api

Previously the api header was not targeted for installation and may have
been missing for third party users.
This commit is contained in:
Kurt Kartaltepe 2020-04-03 18:47:40 -07:00 committed by jp9000
parent 89ccad8a2b
commit 51a5be64d8

View File

@ -13,9 +13,13 @@ if(WIN32)
list(APPEND obs-frontend-api_SOURCES
obs-frontend-api.rc)
endif()
set(obs-frontend-api_PUBLIC_HEADERS
obs-frontend-api.h)
set(obs-frontend-api_HEADERS
obs-frontend-internal.hpp
obs-frontend-api.h)
${obs-frontend-api_PUBLIC_HEADERS})
add_library(obs-frontend-api SHARED
${obs-frontend-api_SOURCES}
@ -34,3 +38,4 @@ if(UNIX AND NOT APPLE)
endif()
install_obs_core(obs-frontend-api)
install_obs_headers(${obs-frontend-api_PUBLIC_HEADERS})