aboutsummaryrefslogtreecommitdiff
path: root/cmake/AddDllCopyCommands.cmake
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2021-04-02 22:04:39 +0100
committerNikhil Raj <nikhil.raj@arm.com>2021-04-16 14:27:27 +0100
commit6dd178f2395b34cfb360eabb0130c19ed258f5fa (patch)
tree6814e4729bbd1e652d8b9c18c9db28f3bc2f8a8a /cmake/AddDllCopyCommands.cmake
parented7fce413410d15c501ea52f9e6bfbbf71b3daf1 (diff)
downloadarmnn-6dd178f2395b34cfb360eabb0130c19ed258f5fa.tar.gz
IVGCVSW-5720 Remove the Caffe Parser from ArmNN
Signed-off-by: Nikhil Raj <nikhil.raj@arm.com> Change-Id: Ib00be204f549efa9aa5971ecf65c2dec4a10b10f
Diffstat (limited to 'cmake/AddDllCopyCommands.cmake')
-rw-r--r--cmake/AddDllCopyCommands.cmake21
1 files changed, 0 insertions, 21 deletions
diff --git a/cmake/AddDllCopyCommands.cmake b/cmake/AddDllCopyCommands.cmake
index ff57bb173d..6190170dbc 100644
--- a/cmake/AddDllCopyCommands.cmake
+++ b/cmake/AddDllCopyCommands.cmake
@@ -39,14 +39,6 @@ macro(addDllCopyCommands target)
addDllCopyCommand(${target} "$<TARGET_FILE_DIR:armnn>/armnn.dll" "$<TARGET_FILE_DIR:armnn>/armnn.dll")
endif()
- # armnnCaffeParser.dll
- if ("armnnCaffeParser" IN_LIST target_deps)
- addDllCopyCommand(${target} "$<TARGET_FILE_DIR:armnnCaffeParser>/armnnCaffeParser.dll"
- "$<TARGET_FILE_DIR:armnnCaffeParser>/armnnCaffeParser.dll")
- addDllCopyCommand(${target} "${PROTOBUF_ROOT}/bin/libprotobufd.dll"
- "${PROTOBUF_ROOT}/bin/libprotobuf.dll")
- endif()
-
# armnnTfParser.dll
if ("armnnTfParser" IN_LIST target_deps)
addDllCopyCommand(${target} "$<TARGET_FILE_DIR:armnnTfParser>/armnnTfParser.dll"
@@ -60,18 +52,5 @@ macro(addDllCopyCommands target)
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})
- addDllCopyCommand(${target} "${CAFFE_BUILD_ROOT}/lib/caffe-d.dll"
- "${CAFFE_BUILD_ROOT}/lib/caffe.dll")
- addDllCopyCommand(${target} "${PROTOBUF_ROOT}/bin/libprotobufd.dll"
- "${PROTOBUF_ROOT}/bin/libprotobuf.dll")
- addDllCopyCommand(${target} "${BLAS_ROOT}/bin/libopenblas.dll" "${BLAS_ROOT}/bin/libopenblas.dll")
- addDllCopyCommand(${target} "${MINGW32_ROOT}/bin/libgfortran-3.dll" "${MINGW32_ROOT}/bin/libgfortran-3.dll")
- addDllCopyCommand(${target} "${MINGW32_ROOT}/bin/libgcc_s_dw2-1.dll" "${MINGW32_ROOT}/bin/libgcc_s_dw2-1.dll")
- addDllCopyCommand(${target} "${MINGW32_ROOT}/bin/libquadmath-0.dll" "${MINGW32_ROOT}/bin/libquadmath-0.dll")
- endif()
endif()
endmacro()