aboutsummaryrefslogtreecommitdiff
path: root/cmake/DelegateVersion.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/DelegateVersion.cmake')
-rw-r--r--cmake/DelegateVersion.cmake18
1 files changed, 0 insertions, 18 deletions
diff --git a/cmake/DelegateVersion.cmake b/cmake/DelegateVersion.cmake
deleted file mode 100644
index caaede85bc..0000000000
--- a/cmake/DelegateVersion.cmake
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
-# SPDX-License-Identifier: MIT
-#
-
-# Read the ArmNN Delegate version components from file
-file(READ ${CMAKE_CURRENT_LIST_DIR}/../delegate/include/Version.hpp delegateVersion)
-
-# Parse the ArmNN Delegate version components
-string(REGEX MATCH "#define DELEGATE_MAJOR_VERSION ([0-9]*)" _ ${delegateVersion})
-set(DELEGATE_MAJOR_VERSION ${CMAKE_MATCH_1})
-string(REGEX MATCH "#define DELEGATE_MINOR_VERSION ([0-9]*)" _ ${delegateVersion})
-set(DELEGATE_MINOR_VERSION ${CMAKE_MATCH_1})
-
-# Define LIB version
-set(DELEGATE_LIB_VERSION "${DELEGATE_MAJOR_VERSION}.${DELEGATE_MINOR_VERSION}")
-# Define LIB soversion
-set(DELEGATE_LIB_SOVERSION "${DELEGATE_MAJOR_VERSION}") \ No newline at end of file