[gvdb/wip/pwithnall/meson] build: Add very basic meson build system




commit 2bd952e73adffc6b5719f69547770076ade8ea6d
Author: Philip Withnall <pwithnall endlessos org>
Date:   Tue Jun 7 18:00:41 2022 +0100

    build: Add very basic meson build system
    
    This doesn’t build any files, but does expose the list of sources as a
    Meson variable so it can be used as a subproject from other projects.
    
    Signed-off-by: Philip Withnall <pwithnall endlessos org>

 meson.build | 9 +++++++++
 1 file changed, 9 insertions(+)
---
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..78a50cb
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,9 @@
+project('gvdb', 'c',
+    version: '0.0',
+    meson_version: '>=0.48.0',
+)
+
+libgvdb_sources = files(
+    'gvdb-builder.c',
+    'gvdb-reader.c',
+)
\ No newline at end of file


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]