aboutsummaryrefslogtreecommitdiff
path: root/src/armnn
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn')
-rw-r--r--src/armnn/DllExport.hpp19
-rw-r--r--src/armnn/WallClockTimer.hpp3
2 files changed, 21 insertions, 1 deletions
diff --git a/src/armnn/DllExport.hpp b/src/armnn/DllExport.hpp
new file mode 100644
index 0000000000..227028c9b7
--- /dev/null
+++ b/src/armnn/DllExport.hpp
@@ -0,0 +1,19 @@
+//
+// Copyright © 2020 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+#pragma once
+
+#if defined (_MSC_VER)
+
+#ifdef ARMNN_COMPILING_DLL
+#define ARMNN_DLLEXPORT __declspec(dllexport)
+#else
+#define ARMNN_DLLEXPORT __declspec(dllimport)
+#endif
+
+#else
+
+#define ARMNN_DLLEXPORT
+
+#endif \ No newline at end of file
diff --git a/src/armnn/WallClockTimer.hpp b/src/armnn/WallClockTimer.hpp
index ff17d79e92..23e1bc689b 100644
--- a/src/armnn/WallClockTimer.hpp
+++ b/src/armnn/WallClockTimer.hpp
@@ -7,6 +7,7 @@
#include "Instrument.hpp"
#include <chrono>
+#include "DllExport.hpp"
namespace armnn
{
@@ -59,7 +60,7 @@ public:
using clock = std::chrono::steady_clock;
#endif
- static const std::string WALL_CLOCK_TIME;
+ ARMNN_DLLEXPORT static const std::string WALL_CLOCK_TIME;
static const std::string WALL_CLOCK_TIME_START;
static const std::string WALL_CLOCK_TIME_STOP;