Add some recipes

This commit is contained in:
2025-04-24 22:24:04 +12:00
parent 8df741f8c0
commit 79e29df082
23 changed files with 1015 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#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;
}