summaryrefslogtreecommitdiff
path: root/web/meson.build
blob: 3fcffed3410e1d9b68ab25a1b88b57a4eb7e5a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
custom_target('website',
  output: ['public'],
  command: [
    'hugo',
    '--source',
    meson.current_source_dir(),
    '--destination',
    meson.current_build_dir() / 'public',
  ],
  depend_files: [
    'hugo.toml',
    'layouts/baseof.html',
    'layouts/home.html',
  ],
  build_by_default: true,
)