Move client sources into client/src dir
This commit is contained in:
parent
ebf9afb4e1
commit
30d03e3739
@ -10,21 +10,4 @@ add_project_arguments('-w', language: 'c')
|
||||
|
||||
gtk_dep = dependency('gtk4')
|
||||
|
||||
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',
|
||||
[
|
||||
'main.vala',
|
||||
'config.vapi'
|
||||
],
|
||||
dependencies: [gtk_dep],
|
||||
c_args: ['-w']
|
||||
)
|
||||
subdir('src')
|
||||
|
18
client/src/meson.build
Normal file
18
client/src/meson.build
Normal 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']
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user