summaryrefslogtreecommitdiffstats
path: root/player/lua/meson.build
blob: 0812817cb66b0cb9e9f7a244a49c1e02cf21e5f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
lua_files = ['defaults.lua', 'assdraw.lua', 'options.lua', 'osc.lua',
             'ytdl_hook.lua', 'stats.lua', 'console.lua', 'auto_profiles.lua',
             'input.lua', 'fzy.lua', 'select.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