diff options
| author | xengineering <me@xengineering.eu> | 2026-05-23 23:56:18 +0200 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-05-23 23:57:04 +0200 |
| commit | cfa648d2b69bdb26bdbb0a9096780d7721c99da3 (patch) | |
| tree | e9f401e4bff7fb1506da132893ba03489613c856 | |
| parent | fe8c7a33aeb2124ffb00a6c6be61369e5e344bc3 (diff) | |
| download | finserv-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.
| -rw-r--r-- | meson.build | 7 |
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, + ], +) |
