Fixed up before doing the upgrade to SFML 3.0
This commit is contained in:
parent
0766a2aacb
commit
2fa68351fc
7 changed files with 143 additions and 37 deletions
11
meson.build
11
meson.build
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue