mirror of https://github.com/fallahn/tmxlite.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
371 B
Meson
18 lines
371 B
Meson
sfml_graphics_dep = dependency('sfml-graphics')
|
|
sfml_window_dep = dependency('sfml-window')
|
|
sfml_system_dep = dependency('sfml-system')
|
|
|
|
pvt_incdir = include_directories('src')
|
|
|
|
executable('SFML_example',
|
|
'src/main.cpp',
|
|
install: false,
|
|
include_directories: pvt_incdir,
|
|
dependencies: [
|
|
tmxlite_dep,
|
|
sfml_graphics_dep,
|
|
sfml_window_dep,
|
|
sfml_system_dep,
|
|
],
|
|
)
|