From 50ae553758ecd8e31661d6913007ad4454aa2f07 Mon Sep 17 00:00:00 2001 From: Benjamin Lodzhevsky Date: Fri, 29 Nov 2024 22:04:55 -0500 Subject: [PATCH] Added a comment to the CMakeLists.txt to inform the user that they will need to have the proper development files installed. --- example/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index da1ed4e2..09414f12 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -1,5 +1,8 @@ # Copyright(c) 2019 spdlog authors Distributed under the MIT License (http://opensource.org/licenses/MIT) +# Make sure to also have the development files for your respective OS! +# For example, Debian based distributions should install libspdlog-dev. + cmake_minimum_required(VERSION 3.11) project(spdlog_examples CXX)