summaryrefslogtreecommitdiff
path: root/pcb
diff options
context:
space:
mode:
Diffstat (limited to 'pcb')
-rw-r--r--pcb/meson.build8
1 files changed, 2 insertions, 6 deletions
diff --git a/pcb/meson.build b/pcb/meson.build
index f320aae..293b2a1 100644
--- a/pcb/meson.build
+++ b/pcb/meson.build
@@ -7,7 +7,7 @@ schematic_files = [
'processor.kicad_sch',
]
-schematic = custom_target('schematic',
+schematic = custom_target(
output: ['schematic.pdf'],
command: [
'kicad-cli',
@@ -19,11 +19,9 @@ schematic = custom_target('schematic',
],
depend_files: schematic_files,
build_by_default: true,
- install: true,
- install_dir: '/',
)
-bom = custom_target('bom',
+bom = custom_target(
output: ['bill-of-materials.csv'],
command: [
'kicad-cli',
@@ -37,6 +35,4 @@ bom = custom_target('bom',
],
depend_files: schematic_files,
build_by_default: true,
- install: true,
- install_dir: '/',
)