Skip to content

Commit

Permalink
⬆️ Update conan OpenSSL package
Browse files Browse the repository at this point in the history
  • Loading branch information
AnotherFoxGuy committed May 15, 2020
1 parent bc6a5e9 commit c93bef9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ add_library(SocketW ${sources} ${headers})

if(EXISTS "${CMAKE_BINARY_DIR}/conanbuildinfo.cmake")
include_directories(${CONAN_INCLUDE_DIRS_OPENSSL})
target_link_libraries(SocketW PRIVATE CONAN_PKG::OpenSSL)
target_link_libraries(SocketW PRIVATE CONAN_PKG::openssl)
else()
include_directories(${OPENSSL_INCLUDE_DIR})
target_link_libraries(SocketW PRIVATE OpenSSL::SSL)
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class SocketwConan(ConanFile):


def requirements(self):
self.requires.add('OpenSSL/1.1.1b@conan/stable')
self.requires.add('openssl/1.1.1g')

def build(self):
cmake = CMake(self)
Expand Down

0 comments on commit c93bef9

Please sign in to comment.