28 lines
583 B
C
28 lines
583 B
C
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
// !!! IMPORTANT !!!
|
|
//
|
|
// You'll need to modify the following library and header paths to
|
|
// correctly link with ZLib.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <zlib.h>
|
|
|
|
|
|
|
|
// Visual C++
|
|
/*
|
|
#if defined _MSC_VER
|
|
#if defined _DEBUG
|
|
#pragma comment(lib, "../JGE/Dependencies/lib/zlibd.lib")
|
|
#else
|
|
#pragma comment(lib, "../JGE/Dependencies/lib/zdll.lib")
|
|
#endif
|
|
#endif
|
|
*/
|