study-system/client/meson.build
Camden Dixie O'Brien 83ab6f7a20 Create initial version of client
This just connects to the server and does very little else.
2025-02-22 20:09:27 +00:00

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']
)