summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-04-03 22:01:03 +0200
committerxengineering <me@xengineering.eu>2025-04-05 10:46:23 +0200
commitb7c46986ac3aa4a17b9fac2ad54afec9d6a3506f (patch)
tree636a4a3221ba337b48dda827dfa22b2685931491
parent34c0c109551c3a67bb89dcfbcd437a5ed812809f (diff)
downloadiot-contact-b7c46986ac3aa4a17b9fac2ad54afec9d6a3506f.tar
iot-contact-b7c46986ac3aa4a17b9fac2ad54afec9d6a3506f.tar.zst
iot-contact-b7c46986ac3aa4a17b9fac2ad54afec9d6a3506f.zip
web: Remove CMake
Trying meson worked so well that CMake is no longer needed.
-rw-r--r--CMakeLists.txt1
-rw-r--r--cmake/hugo.cmake21
-rw-r--r--web/CMakeLists.txt16
3 files changed, 0 insertions, 38 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 90eac62..a21c5d0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,4 +6,3 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
add_subdirectory(fw)
add_subdirectory(pcb)
-add_subdirectory(web)
diff --git a/cmake/hugo.cmake b/cmake/hugo.cmake
deleted file mode 100644
index 0180958..0000000
--- a/cmake/hugo.cmake
+++ /dev/null
@@ -1,21 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at https://mozilla.org/MPL/2.0/.
-
-function(hugo_site target source sink dependencies)
- add_custom_target(
- "${target}"
- ALL
- DEPENDS
- ${sink}
- )
-
- add_custom_command(
- OUTPUT
- ${sink}
- COMMAND
- hugo --source ${source} --destination ${sink}
- DEPENDS
- ${dependencies}
- )
-endfunction()
diff --git a/web/CMakeLists.txt b/web/CMakeLists.txt
deleted file mode 100644
index 92af0cb..0000000
--- a/web/CMakeLists.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-cmake_minimum_required(VERSION 3.10)
-
-include(hugo)
-
-set(dependencies
- hugo.toml
- layouts/baseof.html
- layouts/home.html
-)
-
-hugo_site(
- "website"
- "${CMAKE_CURRENT_SOURCE_DIR}"
- "${CMAKE_CURRENT_BINARY_DIR}/public"
- "${dependencies}"
-)