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.

26 lines
815 B
C

1 month ago
#pragma once
#include "DrawModel\BaseLib.h"
#include "DrawOperator\DrawLib.h"
#include "DrawInclude\dfBaseLib.h"
#include "dfImageLib.h"
#if defined(_DEBUG)
# pragma comment(lib, "DrawOperatorD.lib")
# pragma message("Automatically linking with DrawOperatorD.lib")
# pragma comment(lib, "DrawImageD.lib")
# pragma message("Automatically linking with DrawImaged.lib")
# pragma comment(lib, "cximageD.lib")
# pragma message("Automatically linking with cximageD.lib")
#else
# pragma comment(lib, "DrawOperator.lib")
# pragma message("Automatically linking with DrawOperator.lib")
# pragma comment(lib, "DrawImage.lib")
# pragma message("Automatically linking with DrawImage.lib")
# pragma comment(lib, "cximage.lib")
# pragma message("Automatically linking with cximage.lib")
#endif