summaryrefslogtreecommitdiffstats
path: root/modules/stats/meson.build
blob: 769b867aaebee87c3089e6ca0eeb163eb38012ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# C module: stats

stats_src = [
  'stats.c',
]

stats_mod = shared_module(
  'stats',
  stats_src,
  dependencies: [
    contrib_dep,
    libkres_dep,
    libknot,
    luajit,
  ],
  name_prefix: '',
  install: true,
  install_dir: modules_dir,
)