You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 363B

12345678910111213141516171819202122
  1. # It seems like gcc for Win32 doesn't support the visibility attribute,
  2. # so disable it to make it stop complaining.
  3. if(WIN32)
  4. add_definitions(-DNO_VIZ)
  5. endif()
  6. add_library(zlib STATIC
  7. adler32.c
  8. compress.c
  9. crc32.c
  10. deflate.c
  11. gzclose.c
  12. gzlib.c
  13. gzread.c
  14. gzwrite.c
  15. inflate.c
  16. infback.c
  17. inftrees.c
  18. inffast.c
  19. trees.c
  20. uncompr.c
  21. zutil.c)