21 lines
359 B
Meson
21 lines
359 B
Meson
# LUA module: daf
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
config_tests += [
|
|
['daf', files('daf.test.lua')],
|
|
['daf_http', files('daf_http.test.lua')],
|
|
]
|
|
|
|
integr_tests += [
|
|
['daf', meson.current_source_dir() / 'test.integr'],
|
|
]
|
|
|
|
lua_mod_src += [
|
|
files('daf.lua'),
|
|
]
|
|
|
|
# install daf.js
|
|
install_data(
|
|
'daf.js',
|
|
install_dir: modules_dir / 'daf',
|
|
)
|