19 lines
349 B
Meson
19 lines
349 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')
|
|
|
|
exe = executable(
|
|
'study-system-client',
|
|
'main.vala',
|
|
dependencies: [gtk_dep],
|
|
c_args: ['-w']
|
|
)
|