Now that we have the priorties window in we can finally be able to select windows for capture source such as window capture. Only took about an hour or two to write. Also, fixed some depednency issues on winmm.lib with obs-outputs
21 lines
399 B
CMake
21 lines
399 B
CMake
project(win-capture)
|
|
|
|
set(win-capture_HEADERS
|
|
dc-capture.h)
|
|
|
|
set(win-capture_SOURCES
|
|
dc-capture.c
|
|
monitor-capture.c
|
|
window-capture.c
|
|
plugin-main.c)
|
|
|
|
add_library(win-capture MODULE
|
|
${win-capture_SOURCES}
|
|
${win-capture_HEADERS})
|
|
target_link_libraries(win-capture
|
|
libobs
|
|
psapi.lib)
|
|
|
|
install_obs_plugin(win-capture)
|
|
install_obs_plugin_data(win-capture ../../build/data/obs-plugins/win-capture)
|