14 lines
358 B
C++
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;
|
|
}
|