From 8d4d099f3afc90abc5d3afd97856716de40a3ea6 Mon Sep 17 00:00:00 2001 From: Stanislaw Kaushanski Date: Mon, 17 Aug 2020 11:51:34 +0200 Subject: [PATCH] replace selfmade seasocks package with official one --- conanfile.txt | 4 ++-- platform/src/CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conanfile.txt b/conanfile.txt index d9ef342..bcb440d 100644 --- a/conanfile.txt +++ b/conanfile.txt @@ -1,7 +1,7 @@ [requires] gsl_microsoft/20180102@bincrafters/stable fmt/6.1.2 - Seasocks/1.4.4@minres/stable + seasocks/1.4.4 SystemC/2.3.3@minres/stable SystemCVerification/2.0.1@minres/stable SystemC-CCI/1.0.0@minres/stable @@ -14,7 +14,7 @@ cmake [options] - Seasocks:shared=True + seasocks:shared=True boost:fPIC=True boost:shared=False boost:header_only=False diff --git a/platform/src/CMakeLists.txt b/platform/src/CMakeLists.txt index 18e0292..b9cba48 100644 --- a/platform/src/CMakeLists.txt +++ b/platform/src/CMakeLists.txt @@ -31,7 +31,7 @@ set(LIB_SOURCES add_library(platform ${LIB_SOURCES}) target_include_directories(platform PUBLIC ../incl) -target_link_libraries(platform PUBLIC riscv_sc CONAN_PKG::Seasocks external) +target_link_libraries(platform PUBLIC riscv_sc CONAN_PKG::seasocks external) set_target_properties(platform PROPERTIES VERSION ${PROJECT_VERSION} # ${VERSION} was defined in the main CMakeLists. FRAMEWORK FALSE