From 272c06a063a5cdbdc006a7193f200bf930aa8ecf Mon Sep 17 00:00:00 2001 From: Mikhail Mineev <Mikhail.Mineev@cern.ch> Date: Tue, 8 Apr 2025 16:10:41 +0200 Subject: [PATCH] errors in CrestContainer corrected --- tools/CMakeLists.txt | 4 ++-- tools/CrestContainer.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 640e66d..4dcd648 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.12) project(CrestContainer VERSION 6.1 LANGUAGES CXX) # Find the necessary externals. -find_package(CrestApi 6.1 REQUIRED) +#find_package(CrestApi 6.1 REQUIRED) # Set the C++ standard to use. @@ -48,7 +48,7 @@ target_link_libraries(CrestContainerLib CURL::libcurl Boost::boost nlohmann_json::nlohmann_json - CrestApi::CrestApiLib + CrestApiLib PRIVATE OpenSSL::SSL ) diff --git a/tools/CrestContainer.cxx b/tools/CrestContainer.cxx index 56d8c7d..2db77c3 100644 --- a/tools/CrestContainer.cxx +++ b/tools/CrestContainer.cxx @@ -13,7 +13,7 @@ #include <fstream> #include <iomanip> -#include "CrestApi/CrestCondException.h" +#include <CrestApi/CrestCondException.h> using json = nlohmann::json; -- GitLab