diff options
author | Łukasz Stelmach <l.stelmach@samsung.com> | 2023-09-27 01:36:26 +0200 |
---|---|---|
committer | Łukasz Stelmach <l.stelmach@samsung.com> | 2023-09-27 10:56:56 +0200 |
commit | d28622b7e58855ad240f8ab0f4b478886b792a07 (patch) | |
tree | bf4ea8714c9c3b8f4452b2846cc18682ac5b5482 /lib/liblp | |
parent | c2b1f05d6fa469855da5000ff5e5261e87a08447 (diff) | |
download | dynpart-tools-d28622b7e58855ad240f8ab0f4b478886b792a07.tar.gz dynpart-tools-d28622b7e58855ad240f8ab0f4b478886b792a07.tar.bz2 dynpart-tools-d28622b7e58855ad240f8ab0f4b478886b792a07.zip |
Build partition tools and their dependencies with meson and ninja
The meson.build files added in this commit replicate content of make.sh
as closely as possible.
Diffstat (limited to 'lib/liblp')
-rw-r--r-- | lib/liblp/meson.build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/liblp/meson.build b/lib/liblp/meson.build new file mode 100644 index 0000000..6c8f434 --- /dev/null +++ b/lib/liblp/meson.build @@ -0,0 +1,9 @@ +liblp_sources = files( + 'builder.cpp', + 'images.cpp', + 'partition_opener.cpp', + 'property_fetcher.cpp', + 'reader.cpp', + 'utility.cpp', + 'writer.cpp', +) |