aboutsummaryrefslogtreecommitdiff
path: root/manual tests/3 osx bundle/meson.build
blob: 13ab29a692d1c50f43617586cf22294f7661f93d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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')