Merge pull request #949 from lz4/cmakedll

fix cmake build of shared dll with visual
This commit is contained in:
Yann Collet 2020-11-11 15:48:35 -08:00 committed by GitHub
commit 3771943c7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,6 +107,10 @@ if(BUILD_SHARED_LIBS)
OUTPUT_NAME lz4
SOVERSION "${LZ4_VERSION_MAJOR}"
VERSION "${LZ4_VERSION_STRING}")
if(MSVC)
target_compile_definitions(lz4_shared PRIVATE
LZ4_DLL_EXPORT=1)
endif()
list(APPEND LZ4_LIBRARIES_BUILT lz4_shared)
endif()
if(BUILD_STATIC_LIBS)