CMake configuration for MSMF capture

This commit is contained in:
Artur Wieczorek 2014-09-21 18:48:54 +02:00
parent 6c3cadbd73
commit 7c354c14f7
2 changed files with 2 additions and 0 deletions

View File

@ -228,6 +228,7 @@ if(WITH_DSHOW)
endif(WITH_DSHOW) endif(WITH_DSHOW)
# --- VideoInput/Microsoft Media Foundation --- # --- VideoInput/Microsoft Media Foundation ---
ocv_clear_vars(HAVE_MSMF)
if(WITH_MSMF) if(WITH_MSMF)
check_include_file(Mfapi.h HAVE_MSMF) check_include_file(Mfapi.h HAVE_MSMF)
endif(WITH_MSMF) endif(WITH_MSMF)

View File

@ -123,6 +123,7 @@ if (WIN32 AND HAVE_DSHOW)
endif() endif()
if (WIN32 AND HAVE_MSMF) if (WIN32 AND HAVE_MSMF)
list(APPEND highgui_srcs src/cap_msmf.hpp)
list(APPEND highgui_srcs src/cap_msmf.cpp) list(APPEND highgui_srcs src/cap_msmf.cpp)
endif() endif()