Files
test_cci/recipes/spdlog/all/test_package/test_package.cpp
2025-04-24 22:24:04 +12:00

14 lines
358 B
C++

#include <cstdlib>
#include "spdlog/spdlog.h"
#if defined __has_include
# if __has_include ("spdlog/fmt/bundled/core.h")
# error "bundled fmt within spdlog should not be present"
# endif
#endif
int main(void) {
spdlog::info("Welcome to spdlog version {}.{}.{} !", SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH);
return EXIT_SUCCESS;
}