blob: c46b74925c4687df64a601848b1a0ee31ce44c98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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',
)
|