diff options
author | Benjamin Otte <otte@redhat.com> | 2018-03-31 11:05:31 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-04-05 14:56:38 +0200 |
commit | 144637bff171412aa63331ffbef14fb516d133ca (patch) | |
tree | 12cc97c4f41b42c9a738b6d6ebfe0c08cf3fa362 /meson.build | |
parent | 4b72ea33acca1138a45382cf994c45c5c67c28ca (diff) | |
download | gtk+-144637bff171412aa63331ffbef14fb516d133ca.tar.gz |
build: Switch order of subdirectories
After fixing this once already in 5970dac1679d the order was messed up
again in d50708b0240.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index a84eaf374a..de66c987eb 100644 --- a/meson.build +++ b/meson.build @@ -632,13 +632,13 @@ subdir('gdk') subdir('gsk') subdir('gtk') subdir('modules') +if get_option('demos') + subdir('demos') +endif if get_option('build-tests') subdir('tests') subdir('testsuite') endif -if get_option('demos') - subdir('demos') -endif if get_option('build-examples') subdir('examples') endif |