ide: brc zstd option restored

git-svn-id: svn://ultimatepp.org/upp/trunk@11082 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-05-14 09:44:57 +00:00
parent b6f9796ff2
commit 37e050fda4
4 changed files with 5 additions and 4 deletions

View file

@ -11,8 +11,7 @@ void BinObjInfo::Block::Compress(String& data)
case BinObjInfo::Block::ENC_ZIP: data = ZCompress(data); break;
case BinObjInfo::Block::ENC_LZ4: data = LZ4Compress(data); break;
case BinObjInfo::Block::ENC_LZMA: data = LZMACompress(data); break;
// case BinObjInfo::Block::ENC_ZSTD: data = ZstdCompress(data); break; // Postponed until we
// have import.ext support in the MakeFile export
case BinObjInfo::Block::ENC_ZSTD: data = ZstdCompress(data); break;
}
}

View file

@ -5,7 +5,7 @@
#include <plugin/bz2/bz2.h>
#include <plugin/lz4/lz4.h>
#include <plugin/lzma/lzma.h>
// #include <plugin/zstd/zstd.h>
#include <plugin/zstd/zstd.h>
#include "Logger.h"

View file

@ -4,7 +4,8 @@ uses
Esc,
plugin/bz2,
plugin/lzma,
plugin/lz4;
plugin/lz4,
plugin/zstd;
file
Core.h options(BUILDER_OPTION) PCH,

View file

@ -42,6 +42,7 @@ Image MacroElement::GetImage(Type type)
case(Type::UNKNOWN):
return Image();
}
return Image();
}
#define METHOD_NAME "MacroManagerWindow " << UPP_FUNCTION_NAME << "(): "