summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-04-06 19:30:52 +0200
committerxengineering <me@xengineering.eu>2025-04-06 19:30:52 +0200
commitd0215a2f9f01df704446cbc0ce289a75a623413d (patch)
tree20f6f3e1272e0d0ad8e98d3f6d625936f2217c81
parent8cc751f284b15ff3dbc5b1ba27e3733671cb964c (diff)
downloadiot-contact-d0215a2f9f01df704446cbc0ce289a75a623413d.tar
iot-contact-d0215a2f9f01df704446cbc0ce289a75a623413d.tar.zst
iot-contact-d0215a2f9f01df704446cbc0ce289a75a623413d.zip
tools: Add meson.build
-rw-r--r--meson.build4
-rw-r--r--tools/meson.build2
2 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 446fb29..85faf87 100644
--- a/meson.build
+++ b/meson.build
@@ -1,8 +1,6 @@
project('iot-contact')
-tools = meson.current_source_dir() / 'tools'
-configure_zephyr = tools / 'configure_zephyr.py'
-build_zephyr = tools / 'build_zephyr.py'
+subdir('tools')
fs = import('fs')
css = fs.copyfile(
diff --git a/tools/meson.build b/tools/meson.build
new file mode 100644
index 0000000..85ddbb3
--- /dev/null
+++ b/tools/meson.build
@@ -0,0 +1,2 @@
+configure_zephyr = meson.current_source_dir() / 'configure_zephyr.py'
+build_zephyr = meson.current_source_dir() / 'build_zephyr.py'