1
2if macos_app_bundle
3    install_data(join_paths('icons', 'Taisei.icns'), install_dir : datadir)
4
5    plist = custom_target('macOS property list',
6        command : [preprocess_command, '@INPUT@', '@OUTPUT@'],
7        build_by_default : true,
8        build_always_stale : true,
9        input : 'Info.plist.in',
10        output : 'Info.plist',
11        install : true,
12        install_dir : join_paths(bundle_dir, 'Contents')
13    )
14
15    version_deps += plist
16    bindist_deps += plist
17endif
18
19if angle_enabled and host_machine.system() == 'windows'
20    angle_launcher = 'taisei-angle.bat'
21    angle_bat = custom_target(angle_launcher,
22        command : [eolconv_command, host_eol_style, '--no-bom', '@INPUT@', '@OUTPUT@'],
23        input : angle_launcher,
24        output : angle_launcher,
25        install : true,
26        install_dir : bindir,
27    )
28    bindist_deps += angle_bat
29endif
30
31glslc_test_basic_file = files('glslc-test-basic.frag.glsl')
32glslc_test_uniform_location_file = files('glslc-test-uniform-location.frag.glsl')
33