You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1018 B
C
43 lines
1018 B
C
//
|
|
// G A M E.O.N.E - LOW LEVEL LIB V1.0
|
|
// Copyright (C) 2001 LEVEL ONE ENTERTAINMENT,
|
|
// Licensed under the terms of LGPL.
|
|
//:---------------------------------------------------------------------------
|
|
//:Description
|
|
//
|
|
// SYS LIBS VC3 Environment
|
|
//
|
|
|
|
#ifndef _SYS_LIBS_H
|
|
#define _SYS_LIBS_H
|
|
|
|
#if defined(_DEBUG) || defined(DEBUG)
|
|
|
|
#ifdef _I386_
|
|
#pragma comment( lib, "lowlevellib_vc3_x86d.lib" )
|
|
#pragma comment( lib, "zlib_vc4_emud.lib" )
|
|
#pragma comment( lib, "png_vc4_emud.lib" )
|
|
#endif
|
|
#ifdef ARM
|
|
#pragma comment( lib, "lowlevellib_vc3_armd.lib" )
|
|
#pragma comment( lib, "zlib_vc4_armV4d.lib" )
|
|
#pragma comment( lib, "png_vc4_armV4d.lib" )
|
|
#endif
|
|
|
|
#else
|
|
#ifdef _I386_
|
|
#pragma comment( lib, "lowlevellib_vc3_x86.lib" )
|
|
#pragma comment( lib, "zlib_vc4_x86.lib" )
|
|
#pragma comment( lib, "png_vc4_x86.lib" )
|
|
#endif
|
|
#ifdef ARM
|
|
#pragma comment( lib, "lowlevellib_vc3_arm.lib" )
|
|
#pragma comment( lib, "zlib_vc4_armV4.lib" )
|
|
#pragma comment( lib, "png_vc4_armV4.lib" )
|
|
#endif
|
|
|
|
#endif // debug
|
|
|
|
//_SYS_ASSERT_H
|
|
#endif
|