CMakeLists.txt 231 B

12345678910111213
  1. set(SOURCES
  2. Brotli.cpp
  3. BrotliDictionary.cpp
  4. Deflate.cpp
  5. Lzma.cpp
  6. Lzma2.cpp
  7. Xz.cpp
  8. Zlib.cpp
  9. Gzip.cpp
  10. )
  11. serenity_lib(LibCompress compress)
  12. target_link_libraries(LibCompress PRIVATE LibCore LibCrypto)