diff options
Diffstat (limited to 'examples/pugl_management_demo.app')
-rw-r--r-- | examples/pugl_management_demo.app/MacOS/meson.build | 11 | ||||
-rw-r--r-- | examples/pugl_management_demo.app/meson.build | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/examples/pugl_management_demo.app/MacOS/meson.build b/examples/pugl_management_demo.app/MacOS/meson.build new file mode 100644 index 0000000..1ad7b21 --- /dev/null +++ b/examples/pugl_management_demo.app/MacOS/meson.build @@ -0,0 +1,11 @@ +# Copyright 2021-2023 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: 0BSD OR ISC + +executable( + 'pugl_management_demo', + ['../../pugl_management_demo.c'], + c_args: example_defines + example_c_args + cairo_args, + cpp_args: example_defines + example_cpp_args, + dependencies: [pugl_dep, cairo_backend_dep], + include_directories: include_directories('../../..'), +) diff --git a/examples/pugl_management_demo.app/meson.build b/examples/pugl_management_demo.app/meson.build new file mode 100644 index 0000000..380e38d --- /dev/null +++ b/examples/pugl_management_demo.app/meson.build @@ -0,0 +1,11 @@ +# Copyright 2021-2023 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: 0BSD OR ISC + +config = configuration_data() +config.set('NAME', 'pugl_management_demo') + +info_plist = configure_file(configuration: config, + input: files('../../resources/Info.plist.in'), + output: 'Info.plist') + +subdir('MacOS') |