remove SPD logging framework in favor of abstract logger (#2178)

This commit is contained in:
borgmanJeremy
2021-12-21 13:33:07 -06:00
committed by GitHub
parent 36b3bd9639
commit ca70be773a
155 changed files with 5 additions and 43526 deletions

View File

@@ -66,7 +66,6 @@ option(FLAMESHOT_DEBUG_CAPTURE "Enable mode to make debugging easier" OFF)
option(USE_MONOCHROME_ICON "Build using monochrome icon as default" OFF)
option(GENERATE_TS "Regenerate translation source files" OFF)
option(USE_EXTERNAL_SINGLEAPPLICATION "Use external QtSingleApplication library" OFF)
option(USE_EXTERNAL_SPDLOG "Use external spdlog library" OFF)
option(USE_LAUNCHER_ABSOLUTE_PATH "Use absolute path for the desktop launcher" ON)
include(cmake/StandardProjectSettings.cmake)
@@ -104,13 +103,6 @@ else()
set(QTSINGLEAPPLICATION_LIBRARY SingleApplication::SingleApplication)
endif()
if(USE_EXTERNAL_SPDLOG)
find_package(spdlog REQUIRED)
message(STATUS "Using external spdlog library")
else()
add_subdirectory(external/spdlog)
endif()
option(BUILD_STATIC_LIBS ON)
option(BUILD_SHARED_LIBS OFF)