From 50f488236f6108bf748948c620aaf38814334a8a Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Sat, 5 Oct 2024 13:01:50 -0300 Subject: [WIP] fe-web: Set up basic webserver This doesn't do anything for now. --- src/fe-web/meson.build | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'src/fe-web/meson.build') diff --git a/src/fe-web/meson.build b/src/fe-web/meson.build index cc1a642b..6772eeae 100644 --- a/src/fe-web/meson.build +++ b/src/fe-web/meson.build @@ -1,7 +1,15 @@ +lipstixchat_web_sources = [ + 'fe-web.c' +] + +libsoup_dep = dependency('libsoup-3.0') +lipstixchat_web_deps = [ + hexchat_common_dep, + libsoup_dep +] + executable('hexchat-web', - sources: [ - 'fe-web.c', - ], - dependencies: hexchat_common_dep, + sources: lipstixchat_web_sources, + dependencies: lipstixchat_web_deps, install: true, ) -- cgit 1.4.1