15 lines
275 B
Meson
15 lines
275 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')
|
|
|
|
subdir('src')
|
|
subdir('tests')
|