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

37 lines
995 B
C

#pragma once
#ifndef _CONTROLSDLL_LIBINC_H_
#define _CONTROLSDLL_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" )
#pragma comment( lib, "3DRendererD3D_d.lib" )
#else
#ifdef LAST_RELEASE
#pragma comment( lib, "ProgramCommonLibForEngine.lib" )
#pragma comment( lib, "Common.lib" )
#pragma comment( lib, "3DRendererD3D.lib" )
#else
#pragma comment( lib, "ProgramCommonLibForEngine_p.lib" )
#pragma comment( lib, "Common_p.lib" )
#pragma comment( lib, "3DRendererD3D_p.lib" )
#endif
#endif
#endif // _CONTROLSDLL_LIBINC_H_