diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-14 19:32:49 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-14 19:52:47 -0400 |
commit | 9705252dd1b811f0baa1ea22cc740ccad6140a95 (patch) | |
tree | 8e78715e1b9973b857015f56e4c60e5d5ce836ec /src/dev/stordev/meson.build | |
parent | d4c6a296a121c4f5fcebbc6d28af2ad1be669bd8 (diff) | |
download | selinux-policy-9705252dd1b811f0baa1ea22cc740ccad6140a95.tar.gz |
rewrite build system with meson
Diffstat (limited to 'src/dev/stordev/meson.build')
-rw-r--r-- | src/dev/stordev/meson.build | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/dev/stordev/meson.build b/src/dev/stordev/meson.build new file mode 100644 index 0000000..a971bb6 --- /dev/null +++ b/src/dev/stordev/meson.build @@ -0,0 +1,17 @@ +modules += files( + 'dmstordev.cil', + 'fusestordev.cil', + 'hdstordev.cil', + 'loopstordev.cil', + 'mdstordev.cil', + 'mtdstordev.cil', + 'nvmestordev.cil', + 'rawstordev.cil', + 'removablestordev.cil', + 'sdstordev.cil', + 'sgstordev.cil', + 'vdstordev.cil', + 'xdstordev.cil', + 'zramstordev.cil', +) + |