You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
760 B
18 lines
760 B
#
|
|
# Copyright © 2021,2023 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/classic/include/Version.hpp ClassicDelegateVersion)
|
|
|
|
# Parse the ArmNN Delegate version components
|
|
string(REGEX MATCH "#define DELEGATE_MAJOR_VERSION ([0-9]*)" _ ${ClassicDelegateVersion})
|
|
set(DELEGATE_MAJOR_VERSION ${CMAKE_MATCH_1})
|
|
string(REGEX MATCH "#define DELEGATE_MINOR_VERSION ([0-9]*)" _ ${ClassicDelegateVersion})
|
|
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}") |