1 // =================================
 2 // Copyright (c) 2020 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SNGCM_PARSER_API_INCLUDED
 7 #define SNGCM_PARSER_API_INCLUDED
 8 
 9 #ifdef _WIN32
10 
11 #ifdef SNGCM_PARSER_EXPORTS
12 #define SNGCM_PARSER_API __declspec(dllexport)
13 #else
14 
15 #define SNGCM_PARSER_API __declspec(dllimport)
16 
17 #ifdef NDEBUG
18 #pragma comment(lib, "sngcmparser.lib")
19 #else
20 #pragma comment(lib, "sngcmparserd.lib")
21 #endif
22 
23 #endif
24 
25 #else
26 
27 #define SNGCM_PARSER_API
28 
29 #endif
30 
31 #endif // SNGCM_PARSER_API_INCLUDED