Files
2022-10-26 12:25:11 +08:00

33 lines
855 B
C

// libinc.h
#ifndef _3DFILEACCESS_LIBINC_H_
#define _3DFILEACCESS_LIBINC_H_
#ifdef _DEBUG
#ifdef _DLL
#pragma comment( lib, "wzFilePacker_MD_static_d.lib" )
#else
#pragma comment( lib, "wzFilePacker_static_d.lib" )
#endif
#else
#ifdef _DLL
#pragma comment( lib, "wzFilePacker_MD_static.lib" )
#else
#pragma comment( lib, "wzFilePacker_static.lib" )
#endif
#endif
#ifdef _DEBUG
#pragma comment( lib, "ProgramCommonLibForEngine_d.lib" )
#pragma comment( lib, "Common_d.lib" )
#else
#ifdef LAST_RELEASE
#pragma comment( lib, "ProgramCommonLibForEngine.lib" )
#pragma comment( lib, "Common.lib" )
#else
#pragma comment( lib, "ProgramCommonLibForEngine_p.lib" )
#pragma comment( lib, "Common_p.lib" )
#endif
#endif
#endif // _3DFILEACCESS_LIBINC_H_