We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82facd4 commit 2575c87Copy full SHA for 2575c87
src/CMakeLists.txt
@@ -42,6 +42,10 @@ foreach(TARGET ${AV_TARGETS})
42
target_link_libraries(${TARGET} PRIVATE ws2_32)
43
endif()
44
45
+ if(MSVC and TYPE STREQUAL "SHARED")
46
+ set_target_properties(${TARGET} PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
47
+ endif()
48
+
49
add_library(${AV_NAMESPACE}::${TARGET} ALIAS ${TARGET})
50
endforeach()
51
0 commit comments