1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-16 19:18:05 +00:00

zlib used for (de)compression

This commit is contained in:
Zeno Rogue
2020-01-26 00:30:13 +01:00
parent 76a0ea8795
commit f20a6bf2f6
5 changed files with 48 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ string compiler =
string linker =
"g++ -rdynamic -o hyper";
string libs = " savepng-loc.o -lSDL -lSDL_ttf -lSDL_mixer -lSDL_gfx -lGLEW -lGL -lpng -rdynamic -lpthread";
string libs = " savepng-loc.o -lSDL -lSDL_ttf -lSDL_mixer -lSDL_gfx -lGLEW -lGL -lpng -rdynamic -lpthread -lz";
vector<string> modules;