summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <bigfoot@figboot.dev>2026-01-16 16:54:39 -0600
committerLibravatar bigfoot547 <bigfoot@figboot.dev>2026-01-16 16:54:39 -0600
commit0566f0804b7e48a1070d0d3a5d0f6817b4003a05 (patch)
tree4a24ec6f813cde96295b981ba3f6e44a6c40b8c7 /meson.build
parentdownload jobs (diff)
move include directory
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build8
1 files changed, 6 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 1c09862..f86511c 100644
--- a/meson.build
+++ b/meson.build
@@ -2,8 +2,12 @@ project('vaclaunch', 'c')
jansson_dep = dependency('jansson', required : true)
curl_dep = dependency('libcurl', required : true)
+
+proj_inc = include_directories('include')
+
subdir('lib')
executable('vl', files('main.c'),
- link_with : [ vaclaunch_libs.get_static_lib() ],
- include_directories : vaclaunch_lib_inc)
+ link_with : [ vaclaunch_libs.get_shared_lib() ],
+ dependencies : [ curl_dep, jansson_dep ],
+ include_directories : proj_inc)