mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 11:21:38 +08:00
75ae1ef844
* [libssh2] Fix various issues * Remove dynamic linking * Add feature zlib * Disable dynamic linking on Windows and UWP * version * Use MSBuild generator on Windows * version * Hack for generator on OSX * version * Fix windows dynamic build * version Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
20 lines
840 B
Diff
20 lines
840 B
Diff
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
|
index 2539607..eceb5a0 100644
|
|
--- a/src/CMakeLists.txt
|
|
+++ b/src/CMakeLists.txt
|
|
@@ -355,9 +355,12 @@ target_include_directories(libssh2 PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
|
# Daniel's note: this should not be necessary and we need to work to
|
|
# get this removed.
|
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "Windows" OR ${CMAKE_SYSTEM_NAME} STREQUAL "WindowsStore")
|
|
- target_compile_definitions(libssh2 PRIVATE LIBSSH2_WIN32)
|
|
+ target_compile_definitions(libssh2 PUBLIC LIBSSH2_WIN32)
|
|
+ if (BUILD_SHARED_LIBS)
|
|
+ target_compile_definitions(libssh2 PUBLIC _WINDLL PRIVATE LIBSSH2_LIBRARY)
|
|
+ endif()
|
|
elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
|
|
- target_compile_definitions(libssh2 PRIVATE LIBSSH2_DARWIN)
|
|
+ target_compile_definitions(libssh2 PUBLIC LIBSSH2_DARWIN)
|
|
endif()
|
|
|
|
if(MSVC)
|