diff options
| author | 2026-01-06 03:27:12 -0600 | |
|---|---|---|
| committer | 2026-01-06 03:27:12 -0600 | |
| commit | 4cf8b35097a131abcfc8e0d04d35294be13943ac (patch) | |
| tree | bb384a58c53d7b4ab9faf45e84677ae5cdb42ac1 /meson.build | |
initial commit
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..1c09862 --- /dev/null +++ b/meson.build @@ -0,0 +1,9 @@ +project('vaclaunch', 'c') + +jansson_dep = dependency('jansson', required : true) +curl_dep = dependency('libcurl', required : true) +subdir('lib') + +executable('vl', files('main.c'), + link_with : [ vaclaunch_libs.get_static_lib() ], + include_directories : vaclaunch_lib_inc) |
