summaryrefslogtreecommitdiff
path: root/web/content/meson.build
blob: 5046982798f7680f8457dc67816999609941fc40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
configure_file(
  input: css,
  output: 'simple.css',
  copy: true,
)

schematic_web = custom_target('schematic_web',
  output: ['schematic.pdf'],
  command: [
    'copy.py',
    schematic_pdf,
    meson.current_build_dir() / 'schematic.pdf'
  ],
  depends: [
    schematic,
  ],
)

bom_web = custom_target('bom_web',
  output: ['bill-of-materials.csv'],
  command: [
    'copy.py',
    bom_csv,
    meson.current_build_dir() / 'bill-of-materials.csv'
  ],
  depends: [
    bom,
  ],
)