summaryrefslogtreecommitdiffhomepage
path: root/opentrack-logic/export.hpp
blob: 699fdd6a2d1ae4f4236cc3e195114c722b1f5541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#ifdef BUILD_logic
#   ifdef _WIN32
#       define OPENTRACK_LOGIC_LINKAGE __declspec(dllexport)
#   else
#       define OPENTRACK_LOGIC_LINKAGE
#   endif

#   ifndef _MSC_VER
#       define OPENTRACK_LOGIC_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_LOGIC_LINKAGE
#   else
#       define OPENTRACK_LOGIC_EXPORT OPENTRACK_LINKAGE
#   endif

#else
#   include "import.hpp"
#endif