e8e0255162
* obs-studio: tidy things up a little * obs-studio: add plugin wrapper This allows users to install plugins into their OBS Studio, like so: wrapOBS { plugins = with obs-studio-plugins; [ wlrobs obs-multi-rtmp obs-gstreamer ]; } * obs-gstreamer: convert to plugin * obs-move-transition: convert to plugin * obs-multi-rtmp: convert to plugin * obs-ndi: convert to plugin * obs-v4l2sink: remove The functionality provided by this package is included in the upstream project as of version 26.1. Link: https://github.com/CatxFish/obs-v4l2sink/issues/56#issuecomment-753191690 Link: https://github.com/obsproject/obs-studio/releases/tag/26.1.0 * wlrobs: convert to plugin, unstable-2020-06-22 -> unstable-2021-05-13
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index d116619..a1366ce 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -1,6 +1,17 @@
|
|
+if (POLICY CMP0048)
|
|
+ cmake_policy(SET CMP0048 NEW)
|
|
+endif (POLICY CMP0048)
|
|
+
|
|
project(move-transition VERSION 2.3.0)
|
|
set(PROJECT_FULL_NAME "Move Transition")
|
|
|
|
+include(FindLibobs.cmake)
|
|
+find_package(LibObs REQUIRED)
|
|
+
|
|
+include_directories(
|
|
+ "${LIBOBS_INCLUDE_DIR}/../plugins/obs-transitions"
|
|
+ "${LIBOBS_INCLUDE_DIR}/../UI/obs-frontend-api")
|
|
+
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/version.h.in ${CMAKE_CURRENT_SOURCE_DIR}/version.h)
|
|
|
|
set(move-transition_HEADERS
|
|
@@ -34,4 +45,10 @@ target_link_libraries(move-transition
|
|
libobs)
|
|
|
|
set_target_properties(move-transition PROPERTIES FOLDER "plugins/exeldro")
|
|
-install_obs_plugin_with_data(move-transition data)
|
|
+set_target_properties(move-transition PROPERTIES PREFIX "")
|
|
+
|
|
+install(TARGETS move-transition
|
|
+ LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/obs-plugins)
|
|
+
|
|
+install(DIRECTORY data/locale/
|
|
+ DESTINATION "${CMAKE_INSTALL_PREFIX}/share/obs/obs-plugins/move-transition/locale")
|