Imported Upstream version 0.13.2+dsfg1
This commit is contained in:
commit
fb3990e9e5
2036 changed files with 287360 additions and 0 deletions
17
plugins/obs-x264/CMakeLists.txt
Normal file
17
plugins/obs-x264/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
project(obs-x264)
|
||||
|
||||
find_package(Libx264 REQUIRED)
|
||||
include_directories(${LIBX264_INCLUDE_DIRS})
|
||||
add_definitions(${LIBX264_DEFINITIONS})
|
||||
|
||||
set(obs-x264_SOURCES
|
||||
obs-x264.c
|
||||
obs-x264-plugin-main.c)
|
||||
|
||||
add_library(obs-x264 MODULE
|
||||
${obs-x264_SOURCES})
|
||||
target_link_libraries(obs-x264
|
||||
libobs
|
||||
${LIBX264_LIBRARIES})
|
||||
|
||||
install_obs_plugin_with_data(obs-x264 data)
|
||||
Loading…
Add table
Add a link
Reference in a new issue