summaryrefslogtreecommitdiffstats
path: root/generated/player/lua/meson.build
blob: 362c87cbb7c9b3171035082166b1d059cd22854f (plain)
1
2
3
4
5
6
7
8
9
10
lua_files = ['defaults.lua', 'assdraw.lua', 'options.lua', 'osc.lua',
             'ytdl_hook.lua', 'stats.lua', 'console.lua', 'auto_profiles.lua']
foreach file: lua_files
    lua_file = custom_target(file,
        input: join_paths(source_root, 'player', 'lua', file),
        output: file + '.inc',
        command: [file2string, '@INPUT@', '@OUTPUT@'],
    )
    sources += lua_file
endforeach