diff --git a/public/hashing/hashers/crc32.cpp b/third_party/hashing/hashers/crc32.cpp similarity index 100% rename from public/hashing/hashers/crc32.cpp rename to third_party/hashing/hashers/crc32.cpp diff --git a/public/hashing/hashers/crc32.h b/third_party/hashing/hashers/crc32.h similarity index 100% rename from public/hashing/hashers/crc32.h rename to third_party/hashing/hashers/crc32.h diff --git a/public/hashing/hashers/keccak.cpp b/third_party/hashing/hashers/keccak.cpp similarity index 100% rename from public/hashing/hashers/keccak.cpp rename to third_party/hashing/hashers/keccak.cpp diff --git a/public/hashing/hashers/keccak.h b/third_party/hashing/hashers/keccak.h similarity index 100% rename from public/hashing/hashers/keccak.h rename to third_party/hashing/hashers/keccak.h diff --git a/public/hashing/hashers/md5.cpp b/third_party/hashing/hashers/md5.cpp similarity index 100% rename from public/hashing/hashers/md5.cpp rename to third_party/hashing/hashers/md5.cpp diff --git a/public/hashing/hashers/md5.h b/third_party/hashing/hashers/md5.h similarity index 100% rename from public/hashing/hashers/md5.h rename to third_party/hashing/hashers/md5.h diff --git a/public/hashing/hashers/sha1.cpp b/third_party/hashing/hashers/sha1.cpp similarity index 100% rename from public/hashing/hashers/sha1.cpp rename to third_party/hashing/hashers/sha1.cpp diff --git a/public/hashing/hashers/sha1.h b/third_party/hashing/hashers/sha1.h similarity index 100% rename from public/hashing/hashers/sha1.h rename to third_party/hashing/hashers/sha1.h diff --git a/public/hashing/hashers/sha256.cpp b/third_party/hashing/hashers/sha256.cpp similarity index 100% rename from public/hashing/hashers/sha256.cpp rename to third_party/hashing/hashers/sha256.cpp diff --git a/public/hashing/hashers/sha256.h b/third_party/hashing/hashers/sha256.h similarity index 100% rename from public/hashing/hashers/sha256.h rename to third_party/hashing/hashers/sha256.h diff --git a/public/hashing/hashers/sha3.cpp b/third_party/hashing/hashers/sha3.cpp similarity index 100% rename from public/hashing/hashers/sha3.cpp rename to third_party/hashing/hashers/sha3.cpp diff --git a/public/hashing/hashers/sha3.h b/third_party/hashing/hashers/sha3.h similarity index 100% rename from public/hashing/hashers/sha3.h rename to third_party/hashing/hashers/sha3.h diff --git a/public/hashing/hashing.cpp b/third_party/hashing/hashing.cpp similarity index 100% rename from public/hashing/hashing.cpp rename to third_party/hashing/hashing.cpp diff --git a/public/hashing/hashing.h b/third_party/hashing/hashing.h similarity index 100% rename from public/hashing/hashing.h rename to third_party/hashing/hashing.h diff --git a/public/zlib/AMBuilder b/third_party/zlib/AMBuilder similarity index 87% rename from public/zlib/AMBuilder rename to third_party/zlib/AMBuilder index eb393e77..cfef2b9e 100644 --- a/public/zlib/AMBuilder +++ b/third_party/zlib/AMBuilder @@ -4,7 +4,7 @@ import os, platform lib = builder.compiler.StaticLibrary('zlib') lib.compiler.includes += [ - os.path.join(builder.sourcePath, 'public', 'zlib'), + os.path.join(builder.sourcePath, 'third_party', 'zlib'), ] lib.sources += [ diff --git a/public/zlib/adler32.c b/third_party/zlib/adler32.c similarity index 100% rename from public/zlib/adler32.c rename to third_party/zlib/adler32.c diff --git a/public/zlib/compress.c b/third_party/zlib/compress.c similarity index 100% rename from public/zlib/compress.c rename to third_party/zlib/compress.c diff --git a/public/zlib/crc32.c b/third_party/zlib/crc32.c similarity index 100% rename from public/zlib/crc32.c rename to third_party/zlib/crc32.c diff --git a/public/zlib/crc32.h b/third_party/zlib/crc32.h similarity index 100% rename from public/zlib/crc32.h rename to third_party/zlib/crc32.h diff --git a/public/zlib/deflate.c b/third_party/zlib/deflate.c similarity index 100% rename from public/zlib/deflate.c rename to third_party/zlib/deflate.c diff --git a/public/zlib/deflate.h b/third_party/zlib/deflate.h similarity index 100% rename from public/zlib/deflate.h rename to third_party/zlib/deflate.h diff --git a/public/zlib/gzclose.c b/third_party/zlib/gzclose.c similarity index 100% rename from public/zlib/gzclose.c rename to third_party/zlib/gzclose.c diff --git a/public/zlib/gzguts.h b/third_party/zlib/gzguts.h similarity index 100% rename from public/zlib/gzguts.h rename to third_party/zlib/gzguts.h diff --git a/public/zlib/gzlib.c b/third_party/zlib/gzlib.c similarity index 100% rename from public/zlib/gzlib.c rename to third_party/zlib/gzlib.c diff --git a/public/zlib/gzread.c b/third_party/zlib/gzread.c similarity index 100% rename from public/zlib/gzread.c rename to third_party/zlib/gzread.c diff --git a/public/zlib/gzwrite.c b/third_party/zlib/gzwrite.c similarity index 100% rename from public/zlib/gzwrite.c rename to third_party/zlib/gzwrite.c diff --git a/public/zlib/infback.c b/third_party/zlib/infback.c similarity index 100% rename from public/zlib/infback.c rename to third_party/zlib/infback.c diff --git a/public/zlib/inffast.c b/third_party/zlib/inffast.c similarity index 100% rename from public/zlib/inffast.c rename to third_party/zlib/inffast.c diff --git a/public/zlib/inffast.h b/third_party/zlib/inffast.h similarity index 100% rename from public/zlib/inffast.h rename to third_party/zlib/inffast.h diff --git a/public/zlib/inffixed.h b/third_party/zlib/inffixed.h similarity index 100% rename from public/zlib/inffixed.h rename to third_party/zlib/inffixed.h diff --git a/public/zlib/inflate.c b/third_party/zlib/inflate.c similarity index 100% rename from public/zlib/inflate.c rename to third_party/zlib/inflate.c diff --git a/public/zlib/inflate.h b/third_party/zlib/inflate.h similarity index 100% rename from public/zlib/inflate.h rename to third_party/zlib/inflate.h diff --git a/public/zlib/inftrees.c b/third_party/zlib/inftrees.c similarity index 100% rename from public/zlib/inftrees.c rename to third_party/zlib/inftrees.c diff --git a/public/zlib/inftrees.h b/third_party/zlib/inftrees.h similarity index 100% rename from public/zlib/inftrees.h rename to third_party/zlib/inftrees.h diff --git a/public/zlib/trees.c b/third_party/zlib/trees.c similarity index 100% rename from public/zlib/trees.c rename to third_party/zlib/trees.c diff --git a/public/zlib/trees.h b/third_party/zlib/trees.h similarity index 100% rename from public/zlib/trees.h rename to third_party/zlib/trees.h diff --git a/public/zlib/uncompr.c b/third_party/zlib/uncompr.c similarity index 100% rename from public/zlib/uncompr.c rename to third_party/zlib/uncompr.c diff --git a/public/zlib/zconf.h b/third_party/zlib/zconf.h similarity index 100% rename from public/zlib/zconf.h rename to third_party/zlib/zconf.h diff --git a/public/zlib/zlib.h b/third_party/zlib/zlib.h similarity index 100% rename from public/zlib/zlib.h rename to third_party/zlib/zlib.h diff --git a/public/zlib/zutil.c b/third_party/zlib/zutil.c similarity index 100% rename from public/zlib/zutil.c rename to third_party/zlib/zutil.c diff --git a/public/zlib/zutil.h b/third_party/zlib/zutil.h similarity index 100% rename from public/zlib/zutil.h rename to third_party/zlib/zutil.h