summaryrefslogtreecommitdiff
path: root/meson.build
blob: 446fb29173820fd362d8ed6e63b2b0592236a7ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
project('iot-contact')

tools = meson.current_source_dir() / 'tools'
configure_zephyr = tools / 'configure_zephyr.py'
build_zephyr = tools / 'build_zephyr.py'

fs = import('fs')
css = fs.copyfile(
  meson.current_source_dir() / 'simple.css' / 'simple.css',
  'simple.css',
  install: true,
  install_dir: 'website/static',
)

subdir('fw')
subdir('pcb')
subdir('web')