diff options
author | Benjamin Otte <otte@redhat.com> | 2018-02-17 16:43:21 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-03-16 06:04:44 +0100 |
commit | 5970dac1679d9b7ea3aa6feae1d7520dd235c166 (patch) | |
tree | 6de58e6b36d3caa9a661a115346969a58229eb4d /meson.build | |
parent | 9fa1e6815105c802c6e3e1974b58de55b56df3da (diff) | |
download | gtk+-5970dac1679d9b7ea3aa6feae1d7520dd235c166.tar.gz |
build: Switch order of subdirectories
This makes demos be compiled/linked before tests. And that means that
while hacking, I can already run widget-factory when the tests are
still linking.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meson.build b/meson.build index d50d2f222e..68fce04f46 100644 --- a/meson.build +++ b/meson.build @@ -593,14 +593,14 @@ subdir('gdk') subdir('gsk') subdir('gtk') subdir('modules') -if get_option('build-tests') - subdir('tests') - subdir('testsuite') -endif if get_option('demos') subdir('demos') subdir('examples') endif +if get_option('build-tests') + subdir('tests') + subdir('testsuite') +endif # config.h configure_file(input: 'config.h.meson', |