feat: using spdlog example

This commit is contained in:
XMuli 2022-03-14 20:13:33 +08:00
parent 8914ebf03d
commit 6542643310
No known key found for this signature in database
GPG Key ID: 9554B5DD5B8E986A
4 changed files with 18 additions and 1 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "ExPicShot/3rdparty/spdlog"]
path = ExPicShot/3rdparty/spdlog
url = https://github.com/gabime/spdlog.git

1
ExPicShot/3rdparty/spdlog vendored Submodule

@ -0,0 +1 @@
Subproject commit b1478d98f017f3a7644e6e3a16fab6a47a5c26ba

View File

@ -14,6 +14,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(QT NAMES Qt6 Qt5 COMPONENTS Widgets REQUIRED)
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets REQUIRED)
include_directories(3rdparty/spdlog/include) # spdlog
set(PROJECT_SOURCES
main.cpp
widget.cpp

View File

@ -1,10 +1,21 @@
#include "widget.h"
#include <QApplication>
#include "spdlog/spdlog.h"
int main(int argc, char *argv[])
{
{
QApplication a(argc, argv);
spdlog::info("Welcome to spdlog!");
spdlog::error("Some error message with arg: {}", 1);
spdlog::warn("Easy padding in numbers like {:08d}", 12);
spdlog::critical("Support for int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}", 42);
spdlog::info("Support for floats {:03.2f}", 1.23456);
spdlog::info("Positional args are {1} {0}..", "too", "supported");
spdlog::info("{:<30}", "left aligned");
Widget w;
w.show();
return a.exec();