mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
ide: brc zstd option restored
git-svn-id: svn://ultimatepp.org/upp/trunk@11082 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
b6f9796ff2
commit
37e050fda4
4 changed files with 5 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@ uses
|
|||
Esc,
|
||||
plugin/bz2,
|
||||
plugin/lzma,
|
||||
plugin/lz4;
|
||||
plugin/lz4,
|
||||
plugin/zstd;
|
||||
|
||||
file
|
||||
Core.h options(BUILDER_OPTION) PCH,
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ Image MacroElement::GetImage(Type type)
|
|||
case(Type::UNKNOWN):
|
||||
return Image();
|
||||
}
|
||||
return Image();
|
||||
}
|
||||
|
||||
#define METHOD_NAME "MacroManagerWindow " << UPP_FUNCTION_NAME << "(): "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue