Advertisement
Guest User

Untitled

a guest
Jan 9th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. static_library("minizip") {
  2.     sources = [        
  3.         "crypt.h",
  4.         "ioapi.c",
  5.         "ioapi.h",
  6.         "mztools.c",
  7.         "mztools.h",
  8.         "unzip.c",
  9.         "unzip.h",
  10.         "zip.c",
  11.         "zip.h",
  12.     ]
  13.    
  14.     if (is_win) {
  15.         sources += [
  16.         "iowin32.c",
  17.         "iowin32.h",
  18.         ]
  19.     }
  20.  
  21.     configs -= ["//build/config:default-warnings"]
  22.     configs += ["//build/config:contrib-warnings"]
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement