diff --git a/src/ocppi/cli/Process.cpp b/src/ocppi/cli/Process.cpp index 2ad84c7..b5f907b 100644 --- a/src/ocppi/cli/Process.cpp +++ b/src/ocppi/cli/Process.cpp @@ -8,7 +8,12 @@ #include #include +#include "spdlog/spdlog.h" +#if !defined(SPDLOG_FMT_EXTERNAL) #include "spdlog/fmt/bundled/format.h" +#else +#include "fmt/format.h" +#endif int runProcess(const std::string &binaryPath, const std::vector &args, std::string &output)