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