diff options
author | xengineering <me@xengineering.eu> | 2025-04-03 18:13:16 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-04-03 21:17:23 +0200 |
commit | db02eb87ce5e955f1c970ea3ce88745e03f0bb74 (patch) | |
tree | 2079dd5388962f61831b8dfcd3e1003688a45ce9 /meson.build | |
parent | cfb844a53e6e008aaf3b7d1be3639559609d5540 (diff) | |
download | iot-contact-db02eb87ce5e955f1c970ea3ce88745e03f0bb74.tar iot-contact-db02eb87ce5e955f1c970ea3ce88745e03f0bb74.tar.zst iot-contact-db02eb87ce5e955f1c970ea3ce88745e03f0bb74.zip |
web: Add meson build system
CMake has some disadvantages when building subprojects like with
`ExternalProject`. Furthermore the language is sometimes hard to read,
hard to write and not so much appreciated.
This is a little test if meson might perform better. If successful this
project might switch to meson for all parts except the Zephyr builds.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..537d067 --- /dev/null +++ b/meson.build @@ -0,0 +1,3 @@ +project('iot-contact') + +subdir('web') |