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
00034
00035 #pragma once
00036
00037 #ifdef __cplusplus_cli
00038 #pragma managed(push, off)
00039 #endif
00040
00041 #include "App/clanapp.h"
00042
00043 #ifdef __cplusplus_cli
00044 #pragma managed(pop)
00045 #endif
00046
00047 #if defined(_MSC_VER)
00048 #if !defined(_MT)
00049 #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.
00050 #endif
00051 #if !defined(_DEBUG)
00052 #if defined(CL_DLL)
00053 #pragma comment(lib, "clanApp-dll.lib")
00054 #elif defined(_DLL)
00055 #pragma comment(lib, "clanApp-static-mtdll.lib")
00056 #else
00057 #pragma comment(lib, "clanApp-static-mt.lib")
00058 #endif
00059 #else
00060 #if defined(CL_DLL)
00061 #pragma comment(lib, "clanApp-dll-debug.lib")
00062 #elif defined(_DLL)
00063 #pragma comment(lib, "clanApp-static-mtdll-debug.lib")
00064 #else
00065 #pragma comment(lib, "clanApp-static-mt-debug.lib")
00066 #endif
00067 #endif
00068 #endif