Skip to content

Commit

Permalink
Update CMakeLists.txt [Typo fix]
Browse files Browse the repository at this point in the history
My brain is dysfunctional sorry
  • Loading branch information
kendamaskareivis authored Oct 6, 2023
1 parent a1f45c6 commit 8c5ab87
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ set_target_properties(hiredis PROPERTIES EXPORT_NAME ${hiredis_export_name})
SET_TARGET_PROPERTIES(hiredis
PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS TRUE
VERSION "${VERSION}"
SONAME "${HIREDIS_SONAME}")
SOVERSION "${HIREDIS_SONAME}"
)
IF(MSVC)
SET_TARGET_PROPERTIES(hiredis
PROPERTIES COMPILE_FLAGS /Z7)
Expand Down Expand Up @@ -166,7 +167,8 @@ IF(ENABLE_SSL)
PROPERTIES
WINDOWS_EXPORT_ALL_SYMBOLS TRUE
VERSION "${VERSION}"
SONAME "${HIREDIS_SONAME}")
SOVERSION "${HIREDIS_SONAME}"
)
IF(MSVC)
SET_TARGET_PROPERTIES(hiredis_ssl
PROPERTIES COMPILE_FLAGS /Z7)
Expand Down

0 comments on commit 8c5ab87

Please sign in to comment.