obs-studio/plugins/dshow/CMakeLists.txt
BtbN 45ec80fb7d Full rewrite of all CMakeLists
CMake now works on all platforms
2014-01-24 18:56:32 +01:00

16 lines
219 B
CMake

project(dshow)
set(dshow_SOURCES
dshow-plugin.cpp)
set(dshow_HEADERS
dshow-plugin.hpp)
add_library(dshow MODULE
${dshow_SOURCES}
${dshow_HEADERS})
target_link_libraries(dshow
libobs)
install_obs_plugin(dshow)