Rules-quot
*.exe
*.csv
-tests/format_money
\ No newline at end of file
+tests/format_money
+build/
\ No newline at end of file
--- /dev/null
+project('libzakutils', 'c',
+ version: '0.0.1')
+
+add_global_link_arguments('-lm', language: 'c')
+
+glib_dep = dependency('glib-2.0')
+gobject_dep = dependency('gobject-2.0')
+gio_dep = dependency('gio-2.0')
+
+inc = include_directories('src')
+
+subdir('src')
+subdir('tests')
\ No newline at end of file
--- /dev/null
+install_headers(['libzakutils.h', 'datetime.h', 'generic.h'],
+ subdir: 'libzakutils')
+
+libzakutils_sources = ['datetime.c', 'generic.c']
+
+libzakutils = shared_library ('zakutils',
+ libzakutils_sources,
+ dependencies: [glib_dep, gobject_dep, gio_dep],
+ install: true)
\ No newline at end of file
--- /dev/null
+format_money_exe = executable('format_money', 'format_money.c',
+ include_directories: inc,
+ dependencies: [glib_dep, gobject_dep, gio_dep],
+ link_with: libzakutils)
\ No newline at end of file