Try out fmt which is a very nice printing/formatting library.

This commit is contained in:
Zed A. Shaw 2024-04-25 01:41:35 -04:00
parent 8425872f5e
commit 53bc5c93ed
2 changed files with 14 additions and 2 deletions

View file

@ -5,7 +5,8 @@ project('sfmldemo', 'cpp',
sfml_dep = dependency('sfml')
imgui_dep = dependency('imgui-sfml')
fmt_dep = dependency('fmt')
executable('sfmldemo', 'main.cpp',
win_subsystem: 'windows',
dependencies: [sfml_dep, imgui_dep])
dependencies: [sfml_dep, imgui_dep, fmt_dep])