diff options
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | meson.build | 3 | ||||
m--------- | simple.css | 0 | ||||
-rw-r--r-- | web/layouts/meson.build | 12 | ||||
-rw-r--r-- | web/meson.build | 21 |
5 files changed, 39 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules index 755d4f6..8fcd4bb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,3 +13,6 @@ [submodule "fw/zephyrproject/bootloader/mcuboot"] path = fw/rtos/modules/mcuboot url = https://github.com/zephyrproject-rtos/mcuboot.git +[submodule "simple.css"] + path = simple.css + url = https://github.com/kevquirk/simple.css.git 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') diff --git a/simple.css b/simple.css new file mode 160000 +Subproject 9f62bf3630812239712693886af032311c2dfa3 diff --git a/web/layouts/meson.build b/web/layouts/meson.build new file mode 100644 index 0000000..e582474 --- /dev/null +++ b/web/layouts/meson.build @@ -0,0 +1,12 @@ +sources = [ + 'baseof.html', + 'home.html', +] + +foreach source : sources + configure_file( + input: source, + output: source, + copy: true, + ) +endforeach diff --git a/web/meson.build b/web/meson.build new file mode 100644 index 0000000..743aa77 --- /dev/null +++ b/web/meson.build @@ -0,0 +1,21 @@ +hugo_toml = 'hugo.toml' + +configure_file( + input: hugo_toml, + output: hugo_toml, + copy: true, +) + +subdir('layouts') + +custom_target('website', + output: ['public'], + command: [ + 'hugo', + '--source', + meson.current_build_dir(), + '--destination', + meson.current_build_dir() / 'public', + ], + build_by_default: true, +) |