23 lines
424 B
Meson
23 lines
424 B
Meson
project(
|
|
'study-system-client',
|
|
'vala',
|
|
version : '0.1.0',
|
|
)
|
|
|
|
# Vala often generates C code that produces warnings, so ignore these
|
|
# to avoid a noisy build output.
|
|
add_project_arguments('-w', language: 'c')
|
|
|
|
gtk_dep = dependency('gtk4')
|
|
gnome = import('gnome')
|
|
|
|
resources = gnome.compile_resources(
|
|
'resources',
|
|
'resources.gresource.xml',
|
|
source_dir: '.',
|
|
c_name: 'resources'
|
|
)
|
|
|
|
subdir('src')
|
|
subdir('tests')
|