14 lines
259 B
Meson
14 lines
259 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')
|