Imported Upstream version 0.13.2+dsfg1

This commit is contained in:
Sebastian Ramacher 2016-02-24 00:16:51 +01:00
commit fb3990e9e5
2036 changed files with 287360 additions and 0 deletions

View file

@ -0,0 +1,24 @@
project(test-input)
include_directories(SYSTEM "${CMAKE_SOURCE_DIR}/libobs")
if(MSVC)
set(test-input_PLATFORM_DEPS
w32-pthreads)
endif()
set(test-input_SOURCES
${test-input_PLATFORM_SOURCES}
test-filter.c
test-input.c
test-sinewave.c
test-random.c)
add_library(test-input MODULE
${test-input_SOURCES})
target_link_libraries(test-input
${test-input_PLATFORM_DEPS}
libobs)
install_obs_plugin_with_data(test-input data)