From 8a9b03b5ef763a5c667627e290e30eb68927bf6a Mon Sep 17 00:00:00 2001 From: "Ybalrid (Arthur Brainville)" Date: Tue, 7 Mar 2023 18:06:48 +0100 Subject: [PATCH] Make libdshowcapture.dll installable --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e29ac5..f822502 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,3 +119,6 @@ target_compile_definitions(libdshowcapture PRIVATE _UP_WINDOWS=1) target_link_libraries(libdshowcapture PRIVATE setupapi strmiids ksuser winmm wmcodecdspuuid) + +set_target_properties(libdshowcapture PROPERTIES PUBLIC_HEADER "${libdshowcapture_HEADERS}") +install(TARGETS libdshowcapture)