mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
386 B
CMake
16 lines
386 B
CMake
![]()
6 years ago
|
# Copyright(c) 2019 spdlog authors
|
||
|
# Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
||
|
|
||
|
find_package(Threads REQUIRED)
|
||
|
|
||
|
set(SPDLOG_FMT_EXTERNAL OFF)
|
||
|
set(config_targets_file spdlogConfigTargets.cmake)
|
||
|
|
||
|
if(SPDLOG_FMT_EXTERNAL)
|
||
|
include(CMakeFindDependencyMacro)
|
||
|
find_dependency(fmt CONFIG)
|
||
|
endif()
|
||
|
|
||
|
|
||
|
include("${CMAKE_CURRENT_LIST_DIR}/${config_targets_file}")
|