libobs: Fix leaking obs-internal.h

Removes prior attempt to expose libcaption headers which really shouldnt
have public. This instead moves the obs-internal include out of the
public obs-scene.h and into it's implementation.
master
Kurt Kartaltepe 2021-01-28 18:43:15 -08:00 committed by Jim
parent f12dbc87b8
commit 5efb10a5e2
3 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,6 @@ 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)

View File

@ -20,6 +20,7 @@
#include "util/util_uint64.h"
#include "graphics/math-defs.h"
#include "obs-scene.h"
#include "obs-internal.h"
const struct obs_source_info group_info;

View File

@ -18,7 +18,6 @@
#pragma once
#include "obs.h"
#include "obs-internal.h"
#include "graphics/matrix4.h"
/* how obs scene! */