Create initial version of client

This just connects to the server and does very little else.
This commit is contained in:
2025-02-22 20:09:12 +00:00
parent 5ae2b992ef
commit 83ab6f7a20
2 changed files with 100 additions and 0 deletions

18
client/meson.build Normal file
View File

@@ -0,0 +1,18 @@
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']
)