diff options
author | David Robillard <d@drobilla.net> | 2024-11-24 10:55:53 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-24 12:34:51 -0500 |
commit | 39e30fdc4016337c5e41413600e337879949fac5 (patch) | |
tree | b381767d823581fc58bf8173344eeed6686d01e3 /meson.build | |
parent | d338f4afed7ddafa718cb58ef893ca074fa69f79 (diff) | |
download | zix-39e30fdc4016337c5e41413600e337879949fac5.tar.gz zix-39e30fdc4016337c5e41413600e337879949fac5.tar.bz2 zix-39e30fdc4016337c5e41413600e337879949fac5.zip |
Add zix_expand_environment_strings()
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 55ed750..ad31a87 100644 --- a/meson.build +++ b/meson.build @@ -12,7 +12,7 @@ project( ], license: 'ISC', meson_version: '>= 0.56.0', - version: '0.5.0', + version: '0.5.1', ) zix_src_root = meson.current_source_dir() @@ -305,6 +305,7 @@ c_headers = files( 'include/zix/btree.h', 'include/zix/bump_allocator.h', 'include/zix/digest.h', + 'include/zix/environment.h', 'include/zix/filesystem.h', 'include/zix/hash.h', 'include/zix/path.h', @@ -335,11 +336,13 @@ sources = files( if host_machine.system() == 'windows' sources += files( + 'src/win32/environment_win32.c', 'src/win32/filesystem_win32.c', 'src/win32/system_win32.c', ) else sources += files( + 'src/posix/environment_posix.c', 'src/posix/filesystem_posix.c', 'src/posix/system_posix.c', ) |