From d6f12190c0d953dd3090153a45ecdd10f01cd9c3 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 16 Aug 2022 13:56:04 +0200 Subject: -move templating library into exchange.git --- src/templating/meson.build | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/templating/meson.build (limited to 'src/templating/meson.build') diff --git a/src/templating/meson.build b/src/templating/meson.build new file mode 100644 index 000000000..c7ecc8dfc --- /dev/null +++ b/src/templating/meson.build @@ -0,0 +1,12 @@ +project('mustach', 'c', + version: '1.0.0' +) + +mustach_inc = include_directories('.') +mustach_lib = shared_library('mustach', + 'mustach.c', + include_directories: mustach_inc +) + +mustach_dep = declare_dependency(link_with: mustach_lib, + include_directories: mustach_inc) -- cgit v1.2.3