* Fix building

This commit is contained in:
Antidote 2013-07-20 21:14:33 -07:00
parent e86d64e7bb
commit 89151ed3c8
2 changed files with 19 additions and 3 deletions

17
include/Compression.hpp Normal file
View File

@ -0,0 +1,17 @@
#ifndef COMPRESSION_HPP
#define COMPRESSION_HPP
#include <Types.hpp>
namespace zelda
{
namespace io
{
namespace Compression
{
Int32 decompressZlib(Uint8* src, Uint32 srcLen, Uint8* dst, Uint32 dstLen);
void compressZlib(const Uint8* src, Uint32 srcLen, Uint8* dst, Uint32* dstLen);
}
}
}
#endif // COMPRESSION_HPP

View File

@ -41,7 +41,8 @@ HEADERS += \
include/MCFileWriter.hpp \
include/ZQuestFileWriter.hpp \
include/ZQuestFileReader.hpp \
include/ZQuest.hpp
include/ZQuest.hpp \
include/Compression.hpp
SOURCES += \
src/utility.cpp \
@ -66,8 +67,6 @@ SOURCES += \
src/MCFileReader.cpp \
src/MCFile.cpp \
src/MCFileWriter.cpp \
src/RARCFileReader.cpp \
src/RARCFileEntry.cpp \
src/ZQuestFileWriter.cpp \
src/ZQuestFileReader.cpp \
src/ZQuest.cpp