@@ -4,7 +4,6 @@ if(OS_WINDOWS)
endif()
add_subdirectory(blake2)
-add_subdirectory(file-updater)
add_subdirectory(glad)
add_subdirectory(happy-eyeballs)
add_subdirectory(libcaption)
@@ -10,7 +10,7 @@ set(RTMP_SERVICES_URL
mark_as_advanced(RTMP_SERVICES_URL)
if(NOT TARGET OBS::file-updater)
- add_subdirectory("${CMAKE_SOURCE_DIR}/deps/file-updater" "${CMAKE_BINARY_DIR}/deps/file-updater")
+ add_subdirectory("${CMAKE_SOURCE_DIR}/shared/file-updater" "${CMAKE_BINARY_DIR}/shared/file-updater")
find_package(jansson REQUIRED)
@@ -13,6 +13,10 @@ add_library(OBS::rtmp-services ALIAS rtmp-services)
find_package(Jansson 2.5 REQUIRED)
+if(NOT TARGET OBS::file-updater)
+endif()
+
target_sources(
rtmp-services
PRIVATE service-specific/twitch.c
@@ -31,7 +31,7 @@ if(NOT TARGET OBS::ipc-util)
@@ -13,6 +13,10 @@ add_library(OBS::capture ALIAS win-capture)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/compat-config.h.in ${CMAKE_BINARY_DIR}/config/compat-config.h)