1
2
3
4
5
6 #ifndef SNGCM_LEXER_API_INCLUDED
7 #define SNGCM_LEXER_API_INCLUDED
8
9 #ifdef _WIN32
10
11 #ifdef SNGCM_LEXER_EXPORTS
12 #define SNGCM_LEXER_API __declspec(dllexport)
13 #else
14
15 #define SNGCM_LEXER_API __declspec(dllimport)
16
17 #ifdef NDEBUG
18 #pragma comment(lib, "sngcmlexer.lib")
19 #else
20 #pragma comment(lib, "sngcmlexerd.lib")
21 #endif
22
23 #endif
24
25 #else
26
27 #define SNGCM_LEXER_API
28
29 #endif
30
31 #endif // SNGCM_LEXER_API_INCLUDED
32