Start of the starter pack so I can get the installs up and write a blog post about it.
This commit is contained in:
parent
75ca681dd2
commit
3cef4a80b1
13 changed files with 711 additions and 2 deletions
14
meson.build
Normal file
14
meson.build
Normal file
|
@ -0,0 +1,14 @@
|
|||
project('sfmldemo', 'cpp',
|
||||
default_options: ['cpp_std=c++20'])
|
||||
|
||||
dependencies = [
|
||||
dependency('sfml'),
|
||||
dependency('imgui-sfml'),
|
||||
dependency('fmt'),
|
||||
dependency('box2d'),
|
||||
]
|
||||
|
||||
executable('sfmldemo', 'main.cpp',
|
||||
win_subsystem: 'windows',
|
||||
cpp_args: '-DFMT_HEADER_ONLY',
|
||||
dependencies: dependencies)
|
Loading…
Add table
Add a link
Reference in a new issue