From 1cff1e40e644a9552b1749274d00479816d06f88 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Thu, 13 Jul 2017 20:41:15 -0700 Subject: [PATCH] obs-outputs: Fix a few issues with CMakeLists.txt It's erroneously including an entire directory, including a file that no longer exists, and the obs-outputs_HEADERS variable had a typo when used in the add_library call. --- plugins/obs-outputs/CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/plugins/obs-outputs/CMakeLists.txt b/plugins/obs-outputs/CMakeLists.txt index c8bbf81a4..831bfd7ed 100644 --- a/plugins/obs-outputs/CMakeLists.txt +++ b/plugins/obs-outputs/CMakeLists.txt @@ -64,9 +64,7 @@ set(obs-outputs_HEADERS rtmp-helpers.h rtmp-stream.h net-if.h - flv-mux.h - flv-output.h - librtmp) + flv-mux.h) set(obs-outputs_SOURCES obs-outputs.c null-output.c @@ -78,7 +76,7 @@ set(obs-outputs_SOURCES add_library(obs-outputs MODULE ${obs-outputs_SOURCES} - ${obs-outputs_HEADER} + ${obs-outputs_HEADERS} ${obs-outputs_librtmp_SOURCES} ${obs-outputs_librtmp_HEADERS}) target_link_libraries(obs-outputs