project('simulate-unity', 'cpp', version: '0.1.1', default_options: [ 'warning_level=3', 'cpp_std=c++20', ], meson_version: '>= 0.59', license: 'GPL-3.0-only', ) sources = [ 'src/main.cpp', 'src/unity.cpp', 'src/wayland.cpp', ] cxx = meson.get_compiler('cpp') dl = cxx.find_library('dl') wayland = dependency('wayland-client') executable('simulate-unity', sources, dependencies: [dl, wayland])