diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2021-03-26 15:23:25 +0100 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2021-03-26 15:23:25 +0100 |
commit | 473f835911ca967a178edad3c6dd8c69183c2038 (patch) | |
tree | d8af7df1d595149ef2e1068ff631e7ab8193f32b /examples | |
parent | f4f6dff1c96f60b93e47d6850a43e3e747ce3154 (diff) |
Meson build: Make it possible to use cairomm as a subproject
cairo and sigc++ can be subprojects of cairomm.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/meson.build b/examples/meson.build index 1f60aea..c383432 100644 --- a/examples/meson.build +++ b/examples/meson.build @@ -1,6 +1,6 @@ # examples -# input: cairomm_dep, build_examples +# input: cairomm_own_dep, build_examples examples = [ # [[dir-name], exe-name, [sources]] @@ -26,7 +26,7 @@ foreach ex : examples executable(ex_name, ex_sources, cpp_args: '-DCAIROMM_DISABLE_DEPRECATED', - dependencies: cairomm_dep, + dependencies: cairomm_own_dep, gui_app: false, build_by_default: build_examples ) |