Fixed up before doing the upgrade to SFML 3.0

This commit is contained in:
Zed A. Shaw 2025-03-27 13:18:41 -04:00
parent 0766a2aacb
commit 2fa68351fc
7 changed files with 143 additions and 37 deletions

View file

@ -3,12 +3,17 @@ project('sfmldemo', 'cpp',
dependencies = [
dependency('sfml'),
dependency('imgui-sfml'),
dependency('fmt'),
subproject('fmt').get_variable('fmt_dep'),
dependency('box2d'),
]
executable('sfmldemo', 'main.cpp',
source = [
'dbc.cpp',
'main.cpp'
]
executable('sfmldemo',
source,
win_subsystem: 'windows',
cpp_args: '-DFMT_HEADER_ONLY',
dependencies: dependencies)