diff options
author | 2020-02-14 14:17:26 +0200 | |
---|---|---|
committer | 2020-02-14 14:17:26 +0200 | |
commit | 6bd9b777f28db4d1c7927f7bb3dced339b0decb5 (patch) | |
tree | e95f8a770f54d18b55bf47afd6bbfd16c2f97615 /src/meson.build | |
parent | f8a4fbeeb230157f73789dc860ffbe84f76d0002 (diff) | |
download | algos-ld1-6bd9b777f28db4d1c7927f7bb3dced339b0decb5.tar.gz algos-ld1-6bd9b777f28db4d1c7927f7bb3dced339b0decb5.tar.bz2 algos-ld1-6bd9b777f28db4d1c7927f7bb3dced339b0decb5.zip |
add first bits of the I/O wrapper.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/meson.build b/src/meson.build index d639f02..13ff4d7 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1,5 +1,11 @@ source_files = [ 'main.c', + 'io.c', +] + +header_files = [ + 'io.h', ] sources = files(source_files) +sources += files(header_files) |