Some remarks: * Note that Meson adds a hard dependency on Python 3. * All dependencies and defines are now listed together. * Some build files were put in their respective subdirectories, e.g. the Geary engine library will be built from the Meson file in `src/engine`. * `--fatal-warnings` is no longer an explicit flag, as Meson provides `-Dwerror=true` for this. * An explicit resource file needs to be used. The issue to support this from Meson itself can be found at https://github.com/mesonbuild/meson/issues/706 . * The `gnome.yelp()` function parses a LINGUAS file so we no longer need to keep track of all languages in our build system. * There are no Debian scripts defined in the meson.build files to keep them clean, but they can be kept as separate scripts in `build-aux`. * Left out the `dist` target as there is now `ninja dist` * `geary-docs` is disabled by default, as valadoc-0.38.3 returns errors. https://bugzilla.gnome.org/show_bug.cgi?id=777044
47 lines
1.4 KiB
Meson
47 lines
1.4 KiB
Meson
geary_test_sources = [
|
|
'main.vala',
|
|
'testcase.vala', # Based on same file in libgee, courtesy Julien Peeters
|
|
|
|
'engine/api/geary-attachment-test.vala',
|
|
'engine/api/geary-engine-test.vala',
|
|
'engine/imap/command/imap-create-command-test.vala',
|
|
'engine/imap/response/imap-namespace-response-test.vala',
|
|
'engine/imap/transport/imap-deserializer-test.vala',
|
|
'engine/mime-content-type-test.vala',
|
|
'engine/rfc822-mailbox-address-test.vala',
|
|
'engine/rfc822-message-test.vala',
|
|
'engine/rfc822-message-data-test.vala',
|
|
'engine/rfc822-utils-test.vala',
|
|
'engine/util-html-test.vala',
|
|
'engine/util-idle-manager-test.vala',
|
|
'engine/util-inet-test.vala',
|
|
'engine/util-js-test.vala',
|
|
'engine/util-timeout-manager-test.vala',
|
|
|
|
'client/application/geary-configuration-test.vala',
|
|
'client/components/client-web-view-test.vala',
|
|
'client/components/client-web-view-test-case.vala',
|
|
'client/composer/composer-web-view-test.vala',
|
|
|
|
'js/client-page-state-test.vala',
|
|
'js/composer-page-state-test.vala',
|
|
'js/conversation-page-state-test.vala',
|
|
]
|
|
|
|
geary_test_dependencies = [
|
|
gee,
|
|
gtk,
|
|
libsoup,
|
|
gmime,
|
|
webkit2gtk,
|
|
geary_engine_dep,
|
|
geary_client_dep,
|
|
]
|
|
|
|
geary_test_bin = executable('geary-test',
|
|
geary_test_sources,
|
|
dependencies: geary_test_dependencies,
|
|
c_args: geary_c_options,
|
|
include_directories: config_h_dir,
|
|
)
|
|
test('Geary test suite', geary_test_bin)
|