Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00033
00034 #pragma once
00035
00036 #ifdef WIN32
00037 #pragma warning( disable : 4786)
00038 #endif
00039
00040 #ifdef __cplusplus_cli
00041 #pragma managed(push, off)
00042 #endif
00043
00044 #include "MikMod/setupmikmod.h"
00045 #include "MikMod/soundprovider_mikmod.h"
00046
00047 #ifdef __cplusplus_cli
00048 #pragma managed(pop)
00049 #endif
00050
00051 #if defined(_MSC_VER)
00052 #if !defined(_MT)
00053 #error Your application is set to link with the single-threaded version of the run-time library. Go to project settings, in the C++ section, and change it to multi-threaded.
00054 #endif
00055 #if !defined(_DEBUG)
00056 #if defined(CL_DLL)
00057 #pragma comment(lib, "clanMikMod-dll.lib")
00058 #pragma comment(lib, "mikmod-dll.lib")
00059 #elif defined(_DLL)
00060 #pragma comment(lib, "clanMikMod-static-mtdll.lib")
00061 #pragma comment(lib, "mikmod-static-mtdll.lib")
00062 #else
00063 #pragma comment(lib, "clanMikMod-static-mt.lib")
00064 #pragma comment(lib, "mikmod-static-mt.lib")
00065 #endif
00066 #else
00067 #if defined(CL_DLL)
00068 #pragma comment(lib, "clanMikMod-dll-debug.lib")
00069 #pragma comment(lib, "mikmod-dll-debug.lib")
00070 #elif defined(_DLL)
00071 #pragma comment(lib, "clanMikMod-static-mtdll-debug.lib")
00072 #pragma comment(lib, "mikmod-static-mtdll-debug.lib")
00073 #else
00074 #pragma comment(lib, "clanMikMod-static-mt-debug.lib")
00075 #pragma comment(lib, "mikmod-static-mt-debug.lib")
00076 #endif
00077 #endif
00078 #endif