summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2026-05-23 23:56:18 +0200
committerxengineering <me@xengineering.eu>2026-05-23 23:57:04 +0200
commitcfa648d2b69bdb26bdbb0a9096780d7721c99da3 (patch)
treee9f401e4bff7fb1506da132893ba03489613c856 /meson.build
parentfe8c7a33aeb2124ffb00a6c6be61369e5e344bc3 (diff)
downloadfinserv-cfa648d2b69bdb26bdbb0a9096780d7721c99da3.tar
finserv-cfa648d2b69bdb26bdbb0a9096780d7721c99da3.tar.zst
finserv-cfa648d2b69bdb26bdbb0a9096780d7721c99da3.zip
Add `run` target
This allows to easily run the server with a single `meson compile -C build run` during development.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 5ee335b..0bd75d3 100644
--- a/meson.build
+++ b/meson.build
@@ -24,3 +24,10 @@ finserv_linux_amd64 = custom_target(
depends : frontend,
build_by_default : true,
)
+
+run_target(
+ 'run',
+ command : [
+ finserv_linux_amd64,
+ ],
+)