aboutsummaryrefslogtreecommitdiff
path: root/cmake/AddDllCopyCommands.cmake
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2021-07-15 09:35:50 +0100
committerSadik Armagan <sadik.armagan@arm.com>2021-07-15 09:35:50 +0100
commit1ccb3c3a26d8b02959493a54367054c1b43ab12c (patch)
treea53c067ec5eba9457420665622b8f295f27261a8 /cmake/AddDllCopyCommands.cmake
parent7af2fd7021a80ce4af8e0bb4000a445b82f53ee9 (diff)
downloadarmnn-1ccb3c3a26d8b02959493a54367054c1b43ab12c.tar.gz
IVGCVSW-5965: Remove the boost library from Arm NN build files.
* Remove all references to boost from the ArmNN build files: * Caught one remaining include in TensorTest.cpp. Signed-off-by: Colm Donelan <Colm.Donelan@arm.com> Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: Ib8c8014cf471aa0024c977ccb23ebf96b0236aca
Diffstat (limited to 'cmake/AddDllCopyCommands.cmake')
-rw-r--r--cmake/AddDllCopyCommands.cmake9
1 files changed, 0 insertions, 9 deletions
diff --git a/cmake/AddDllCopyCommands.cmake b/cmake/AddDllCopyCommands.cmake
index b32215adc8..671bc7d97f 100644
--- a/cmake/AddDllCopyCommands.cmake
+++ b/cmake/AddDllCopyCommands.cmake
@@ -5,15 +5,6 @@ macro (addDllCopyCommand target sourceDebug sourceRelease)
$<TARGET_FILE_DIR:${target}>)
endmacro()
-macro (addBoostDllCopyCommand target ignored sourceReleaseLib ignored sourceDebugLib)
- string(REGEX REPLACE ".lib$" ".dll" sourceReleaseDll ${sourceReleaseLib})
- string(REGEX REPLACE "/libboost" "/boost" sourceReleaseDll2 ${sourceReleaseDll})
-
- string(REGEX REPLACE ".lib$" ".dll" sourceDebugDll ${sourceDebugLib})
- string(REGEX REPLACE "/libboost" "/boost" sourceDebugDll2 ${sourceDebugDll})
- addDllCopyCommand(${target} ${sourceDebugDll2} ${sourceReleaseDll2})
-endmacro()
-
# Checks if the given list contains an entry which matches the given regex.
function(listContainsRegex result list regex)
set(${result} 0 PARENT_SCOPE)