diff options
author | 2023-10-08 18:48:06 +0600 | |
---|---|---|
committer | 2023-10-08 18:50:58 +0600 | |
commit | 0a994adf3c6feab7d50b4bea01659436e4c695b4 (patch) | |
tree | 63812ecb2049a2e003b5340d47522dbc914d2c9b /meson.build | |
parent | d5c12ef35ae5b26df0ae6507002ad18b2f7c22b4 (diff) | |
download | jadupc-remote-support-console-0a994adf3c6feab7d50b4bea01659436e4c695b4.tar.gz jadupc-remote-support-console-0a994adf3c6feab7d50b4bea01659436e4c695b4.zip |
test: Add unit test for parser
Signed-off-by: Mubashshir <ahm@jadupc.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 09fc662..78dac0a 100644 --- a/meson.build +++ b/meson.build @@ -31,6 +31,8 @@ valac = meson.get_compiler ('vala') conf = configuration_data () srcs = [] +tests = [] + i18n_data = [] vapi_overrides = [] @@ -59,6 +61,8 @@ foreach override : vapi_overrides add_project_arguments('--vapidir=@0@'.format(meson.current_source_dir() / 'vapi' / override), language: 'vala') endforeach +subdir('tests') + executable(application_name, srcs + resources, include_directories: config_h_dir, vala_args: '--target-glib=2.50', dependencies: deps, |