A simple meson based build of an SFML+ImGUI project.

This commit is contained in:
Zed A. Shaw 2024-04-23 07:50:26 -04:00
parent 7cf9010686
commit 8a78fffb5f
3 changed files with 66 additions and 0 deletions

9
sfmldemo/meson.build Normal file
View file

@ -0,0 +1,9 @@
project('sfmldemo', 'cpp',
default_options: 'default_library=static')
sfml_dep = dependency('sfml')
imgui_dep = dependency('imgui-sfml')
executable('sfmlprog', 'sfmlprog.cpp',
win_subsystem: 'windows',
dependencies: [sfml_dep, imgui_dep])