From 734af31c1354f4861f54b7f297f17db2190cda8b Mon Sep 17 00:00:00 2001 From: Francois Chabot Date: Fri, 1 Feb 2019 12:12:58 -0500 Subject: [PATCH] Allow the inclusion of an external fmtlib as as sub_directory --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f0ddaeef..8da5f3a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -54,7 +54,7 @@ option(SPDLOG_BUILD_BENCH "Build benchmarks (Requires https://github.com/google/ option(SPDLOG_BUILD_TESTS "Build tests" ${SPDLOG_MASTER_PROJECT}) option(SPDLOG_FMT_EXTERNAL "Use external fmt library instead of bundled" OFF) -if(SPDLOG_FMT_EXTERNAL) +if(SPDLOG_FMT_EXTERNAL AND NOT TARGET fmt::fmt) find_package(fmt REQUIRED CONFIG) endif()