diff options
author | crupest <crupest@outlook.com> | 2023-10-07 11:05:03 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-10-07 11:05:03 +0800 |
commit | faa63afb8db43690fa633fe1673be9331d278e24 (patch) | |
tree | 427d2d34bdd2bcb7da6a498a3e763fc4fec139be /lib/meson-projects/meson.build | |
parent | 5571f4a03d10d590c0d0d0e64b9e210d0752a44e (diff) | |
download | cru-faa63afb8db43690fa633fe1673be9331d278e24.tar.gz cru-faa63afb8db43690fa633fe1673be9331d278e24.tar.bz2 cru-faa63afb8db43690fa633fe1673be9331d278e24.zip |
Try to unify meson projects. So deps will be well organized.
Diffstat (limited to 'lib/meson-projects/meson.build')
-rw-r--r-- | lib/meson-projects/meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/meson-projects/meson.build b/lib/meson-projects/meson.build new file mode 100644 index 00000000..5b2b6a4d --- /dev/null +++ b/lib/meson-projects/meson.build @@ -0,0 +1,7 @@ +project('cru-deps', 'c', 'cpp') + +alias_target('all', + dependency('cairo', fallback: ['cairo', 'cairo_dep'], required: get_option('cairo')), + dependency('pango', fallback: ['pango', 'pango_deps'], required: get_option('pango')) +) + |