aboutsummaryrefslogtreecommitdiff
path: root/tests/MemoryStrategyBenchmark/CMakeLists.txt
blob: e9b647742ef0ac2b143a60ea92a9a6a85dac5052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
# SPDX-License-Identifier: MIT
#

add_executable(MemoryStrategyBenchmark
               MemoryStrategyBenchmark.cpp
               TestBlocks.hpp
               TestStrategy.hpp
               TestStrategy.cpp
               ../../include/armnn/Exceptions.hpp
               ../../src/armnn/Exceptions.cpp)

target_link_libraries(MemoryStrategyBenchmark armnnMemoryOptimizationStrategies)
target_include_directories(MemoryStrategyBenchmark PRIVATE
                           ../../include/armnn/backends
                           ../../src/backends/backendsCommon/memoryOptimizerStrategyLibrary
                           ../../third-party/cxxopts)


set_target_properties(MemoryStrategyBenchmark PROPERTIES LINKER_LANGUAGE CXX)