0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 21:13:04 +02:00

win-dshow: Disable plugin and warn if submodule not found

This commit is contained in:
jp9000 2016-09-20 05:07:30 -07:00
parent 6736aeebde
commit 84613cecff

View File

@ -1,3 +1,8 @@
if(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/libdshowcapture/dshowcapture.hpp")
message(STATUS "libdshowcapture submodule not found! Please fetch submodules. win-dshow plugin disabled.")
return()
endif()
project(win-dshow)
find_package(FFmpeg REQUIRED COMPONENTS avcodec avutil)