Skip to content
Snippets Groups Projects
Commit 78de5336 authored by Millian Poquet's avatar Millian Poquet
Browse files

[dep] loguru: 1.8.0 -> 2.0.0

parent ccafaa02
No related branches found
No related tags found
No related merge requests found
......@@ -87,6 +87,7 @@ target_link_libraries(batsched ${GMP_LIBRARIES}
${Boost_REGEX_LIBRARY_DEBUG}
${Boost_LOCALE_LIBRARY_DEBUG}
${INTERVALSET_LIBRARY}
${LOGURU_LIBRARIES}
Threads::Threads
${CMAKE_DL_LIBS}
${REDOX_LIBRARY}
......
......@@ -3,12 +3,14 @@
# Sets the usual variables expected for find_package scripts:
#
# LOGURU_INCLUDE_DIR - header location
# LOGURU_LIBRARIES - libraries needed to use loguru
# LOGURU_FOUND - true if loguru was found.
find_path(LOGURU_INCLUDE_DIR loguru.hpp)
find_library(LOGURU_LIBRARIES NAMES loguru libloguru)
# Support the REQUIRED and QUIET arguments, and set LOGURU_FOUND if found.
include (FindPackageHandleStandardArgs)
find_package_handle_standard_args(loguru DEFAULT_MSG LOGURU_INCLUDE_DIR)
find_package_handle_standard_args(loguru DEFAULT_MSG LOGURU_INCLUDE_DIR LOGURU_LIBRARIES)
mark_as_advanced(LOGURU_INCLUDE_DIR)
mark_as_advanced(LOGURU_INCLUDE_DIR LOGURU_LIBRARIES)
......@@ -9,7 +9,6 @@
#include <rapidjson/document.h>
#define LOGURU_IMPLEMENTATION 1
#include <loguru.hpp>
#include "external/taywee_args.hpp"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment