aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorRob Hughes <robert.hughes@arm.com>2019-07-23 15:34:01 +0100
committerRob Hughes <robert.hughes@arm.com>2019-07-23 15:58:23 +0100
commitb0f1dd7171836af19e632dff0b90065a8710f5fa (patch)
tree75f058e302803ef43b7c757ceeca26a9255263ec /cmake
parent65c32264d02c5f01fd5bd2b1549ef5b61a905bd9 (diff)
downloadarmnn-b0f1dd7171836af19e632dff0b90065a8710f5fa.tar.gz
Add DLL copy commands for armnnTfLiteParser.dll
Change-Id: Ibf4448bc898d2265ddba1be038d8ebc757bcdc2e
Diffstat (limited to 'cmake')
-rw-r--r--cmake/AddDllCopyCommands.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmake/AddDllCopyCommands.cmake b/cmake/AddDllCopyCommands.cmake
index b0f4ee0814..74f6f6fff1 100644
--- a/cmake/AddDllCopyCommands.cmake
+++ b/cmake/AddDllCopyCommands.cmake
@@ -55,6 +55,12 @@ macro(addDllCopyCommands target)
"${PROTOBUF_ROOT}/bin/libprotobuf.dll")
endif()
+ # armnnTfLiteParser.dll
+ if ("armnnTfLiteParser" IN_LIST target_deps)
+ addDllCopyCommand(${target} "$<TARGET_FILE_DIR:armnnTfLiteParser>/armnnTfLiteParser.dll"
+ "$<TARGET_FILE_DIR:armnnTfLiteParser>/armnnTfLiteParser.dll")
+ endif()
+
# caffe.dll and its dependencies
listContainsRegex(includeCaffeDlls "${target_deps}" "caffe")
if (${includeCaffeDlls})