#pragma once #pragma warning(disable : 4996) #if defined(_DEBUG) #ifndef LIB_PATH #define LIB_PATH "" #endif #pragma comment(lib, LIB_PATH "DrawModeld.lib") #pragma message("Automatically linking with DrawModeld.lib") #pragma comment(lib, LIB_PATH "DrawLocalD.lib") #pragma message("Automatically linking with DrawLocalD.lib") #else #ifndef LIB_PATH #define LIB_PATH "" #endif #pragma comment(lib, LIB_PATH "DrawModel.lib") #pragma message("Automatically linking with DrawModel.lib") #pragma comment(lib, LIB_PATH "DrawLocal.lib") #pragma message("Automatically linking with DrawLocal.lib") #endif