2019-05-19 15:47:49 +03:00
|
|
|
# Copyright(c) 2019 spdlog authors
|
|
|
|
|
# Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
|
|
2021-08-04 14:47:18 +01:00
|
|
|
@PACKAGE_INIT@
|
|
|
|
|
|
2024-01-13 12:56:18 +02:00
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
|
|
2019-05-19 15:47:49 +03:00
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
|
2024-01-13 15:55:05 +02:00
|
|
|
set(SPDLOG_USE_STD_FORMAT @SPDLOG_USE_STD_FORMAT@)
|
|
|
|
|
if(NOT SPDLOG_USE_STD_FORMAT)
|
|
|
|
|
find_dependency(fmt CONFIG)
|
|
|
|
|
endif()
|
2019-05-19 15:47:49 +03:00
|
|
|
|
2024-01-13 15:55:05 +02:00
|
|
|
set(config_targets_file @config_targets_file@)
|
2019-05-19 15:47:49 +03:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/${config_targets_file}")
|
2021-08-04 14:47:18 +01:00
|
|
|
|
2022-03-06 10:52:09 -05:00
|
|
|
check_required_components(spdlog)
|