You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
644 B
C

#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