A simple meson based build of an SFML+ImGUI project.
This commit is contained in:
parent
7cf9010686
commit
8a78fffb5f
3 changed files with 66 additions and 0 deletions
9
sfmldemo/meson.build
Normal file
9
sfmldemo/meson.build
Normal 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])
|
Loading…
Add table
Add a link
Reference in a new issue