diff options
Diffstat (limited to 'lib/BUCK')
-rw-r--r-- | lib/BUCK | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -25,6 +25,9 @@ cxx_library( name='decompress', header_namespace='', visibility=['PUBLIC'], + headers=subdir_glob([ + ('decompress', '*_impl.h'), + ]), srcs=glob(['decompress/zstd*.c']), deps=[ ':common', @@ -81,6 +84,15 @@ cxx_library( ) cxx_library( + name='cpu', + header_namespace='', + visibility=['PUBLIC'], + exported_headers=subdir_glob([ + ('common', 'cpu.h'), + ]), +) + +cxx_library( name='bitstream', header_namespace='', visibility=['PUBLIC'], @@ -196,6 +208,7 @@ cxx_library( deps=[ ':bitstream', ':compiler', + ':cpu', ':entropy', ':errors', ':mem', |