mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
ide: Zstd option removed from brc options until makefile generation is resolved
git-svn-id: svn://ultimatepp.org/upp/trunk@11076 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
2752abd8ca
commit
72e7c17acc
4 changed files with 5 additions and 6 deletions
|
|
@ -11,7 +11,8 @@ 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;
|
||||
// case BinObjInfo::Block::ENC_ZSTD: data = ZstdCompress(data); break; // Postponed until we
|
||||
// have import.ext support in the MakeFile export
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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,8 +4,7 @@ uses
|
|||
Esc,
|
||||
plugin/bz2,
|
||||
plugin/lzma,
|
||||
plugin/lz4,
|
||||
plugin/zstd;
|
||||
plugin/lz4;
|
||||
|
||||
file
|
||||
Core.h options(BUILDER_OPTION) PCH,
|
||||
|
|
|
|||
|
|
@ -19,8 +19,7 @@ uses
|
|||
TabBar,
|
||||
ide/Designers,
|
||||
ide/Android,
|
||||
ide/Java,
|
||||
plugin/zstd;
|
||||
ide/Java;
|
||||
|
||||
uses(POSIX) ide\SrcUpdater;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue