Full rewrite of all CMakeLists
CMake now works on all platforms
This commit is contained in:
26
plugins/obs-ffmpeg/CMakeLists.txt
Normal file
26
plugins/obs-ffmpeg/CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
project(obs-ffmpeg)
|
||||
|
||||
find_package(Libavformat REQUIRED)
|
||||
include_directories(${Libavformat_INCLUDE_DIR})
|
||||
add_definitions(${Libavformat_DEFINITIONS})
|
||||
|
||||
find_package(Libswresample REQUIRED)
|
||||
include_directories(${Libswresample_INCLUDE_DIR})
|
||||
add_definitions(${Libswresample_DEFINITIONS})
|
||||
|
||||
set(obs-ffmpeg_SOURCES
|
||||
obs-ffmpeg.c
|
||||
obs-ffmpeg-output.c)
|
||||
|
||||
set(obs-ffmpeg_HEADERS
|
||||
obs-ffmpeg-output.h)
|
||||
|
||||
add_library(obs-ffmpeg MODULE
|
||||
${obs-ffmpeg_SOURCES}
|
||||
${obs-ffmpeg_HEADERS})
|
||||
target_link_libraries(obs-ffmpeg
|
||||
libobs
|
||||
${Libavformat_LIBRARIES}
|
||||
${Libswresample_LIBRARIES})
|
||||
|
||||
install_obs_plugin(obs-ffmpeg)
|
Reference in New Issue
Block a user