Processor/AutoLink.hpp
1 #ifndef DM_PROCESSOR_AUTOLINK_HPP_INCLUDED
2 #define DM_PROCESSOR_AUTOLINK_HPP_INCLUDED
3 
4 #ifdef _MSC_VER
5  #pragma once
6 #endif
7 
8 #include "DM/AutoLink.hpp" //DM enable autolink
9 
10 #if defined(DATAMANAGER_PROCESSOR_EXPORTS) || defined(DISABLE_DATAMANAGER_AUTOLINK)
11  //nothing required
12 #else
13  #ifdef _DEBUG
14  #pragma comment(lib, "dm_processor_d.lib")
15  #else
16  #pragma comment(lib, "dm_processor.lib")
17  #endif
18 #endif
19 
20 #ifdef DATAMANAGER_PROCESSOR_EXPORTS
21  #define DM_PS_API __declspec(dllexport)
22 #else
23  #define DM_PS_API //__declspec(dllimport)
24 #endif
25 
26 
27 
28 #endif //DM_PROCESSOR_AUTOLINK_HPP_INCLUDED