b119478ce3
cards.dat has been replaced with cards.ini there are no more plugins though plugin support still exists card reading is not yet implemented 08.18/amauth support is not yet implemented
15 lines
345 B
Diff
15 lines
345 B
Diff
+++ tomlc99/meson.build
|
|
@@ -0,0 +1,12 @@
|
|
+project('tomlc99', 'c', version: '1.0.0')
|
|
+
|
|
+tomlc99_inc = include_directories('.')
|
|
+tomlc99_lib = static_library(
|
|
+ 'tomlc99',
|
|
+ include_directories: tomlc99_inc,
|
|
+ sources: ['toml.c']
|
|
+)
|
|
+tomlc99_dep = declare_dependency(
|
|
+ link_with: tomlc99_lib,
|
|
+ include_directories: tomlc99_inc,
|
|
+)
|