Files
CPM.cmake/examples/spdlog/main.cpp

6 lines
87 B
C++
Raw Normal View History

#include <spdlog/spdlog.h>
int main() {
spdlog::info("Hello, world!");
return 0;
}