diff options
Diffstat (limited to 'manual tests/3 osx bundle/meson.build')
-rw-r--r-- | manual tests/3 osx bundle/meson.build | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/manual tests/3 osx bundle/meson.build b/manual tests/3 osx bundle/meson.build new file mode 100644 index 0000000..13ab29a --- /dev/null +++ b/manual tests/3 osx bundle/meson.build @@ -0,0 +1,18 @@ +project('myapp', 'c') + +sdl = dependency('sdl2') + +prog = executable('myapp', 'myapp.c', +dependencies : sdl, +install : true) + +install_data('myapp.sh', +install_dir : 'Contents/MacOS') + +install_data('myapp.icns', +install_dir : 'Contents/Resources') + +install_data('Info.plist', +install_dir : 'Contents') + +meson.set_install_script('install_script.sh') |