Move client sources into client/src dir

This commit is contained in:
Camden Dixie O'Brien 2025-02-23 10:25:42 +00:00
parent ebf9afb4e1
commit 30d03e3739
4 changed files with 19 additions and 18 deletions

View File

@ -10,21 +10,4 @@ add_project_arguments('-w', language: 'c')
gtk_dep = dependency('gtk4') gtk_dep = dependency('gtk4')
conf = configuration_data() subdir('src')
conf.set_quoted(
'CONFIG_CERT_DIR',
join_paths(meson.project_source_root(), '..', 'test'))
configure_file(
output: 'config.h',
configuration: conf
)
exe = executable(
'study-system-client',
[
'main.vala',
'config.vapi'
],
dependencies: [gtk_dep],
c_args: ['-w']
)

18
client/src/meson.build Normal file
View File

@ -0,0 +1,18 @@
conf = configuration_data()
conf.set_quoted(
'CONFIG_CERT_DIR',
join_paths(meson.project_source_root(), '..', 'test'))
configure_file(
output: 'config.h',
configuration: conf
)
exe = executable(
'study-system-client',
[
'config.vapi',
'main.vala'
],
dependencies: [gtk_dep],
c_args: ['-w']
)