Go to the documentation of this file. 8 #ifndef DXLE_INC_CONFIG_LINK_H_ 9 #define DXLE_INC_CONFIG_LINK_H_ 13 # if (_MSC_VER < 1800) 15 #error no compilers before 1800 are supported 16 # elif (_MSC_VER < 1900) 18 # define DXLE_LIB_TOOLSET "_v120" 19 # elif (_MSC_VER < 2000) 21 # define DXLE_LIB_TOOLSET "_v140" 23 static_assert(
false,
"this version of visual studio is not supported yet")
27 # define DXLE_LIB_TOOLSET "" 31 # define DXLE_PLATFORM_TARGET "_x64" 33 # define DXLE_PLATFORM_TARGET "_x86" 36 #if defined(_DEBUG) || !defined(NDEBUG) 37 # define DXLE_CONFIGURATION "_d" 39 # define DXLE_CONFIGURATION "_r" 42 # define DXLE_CHARACTERSET "_Unicode" 44 # define DXLE_CHARACTERSET "_MultiByte" 47 #pragma comment(lib,"ProjectDxLibEx" DXLE_LIB_TOOLSET DXLE_CHARACTERSET DXLE_PLATFORM_TARGET DXLE_CONFIGURATION ".lib")