1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

move zip C dependency to thirdparty/

This commit is contained in:
Alexander Medvednikov 2019-07-15 19:30:53 +02:00
parent 449fd372f9
commit ecda895003
4 changed files with 3 additions and 4 deletions

View File

@ -1,8 +1,6 @@
module szip module szip
// what the shit im do #flag -I @VROOT/thirdparty/zip
// #flag -I @VROOT/thirdparty/szip
#flag -I .
#include "zip.c" #include "zip.c"
#include "zip.h" #include "zip.h"
@ -285,3 +283,4 @@ pub fn (zentry mut zip_ptr) total() ?int {
} }
return _tentry return _tentry
} }