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

set(timelineDecoder_sources)
list(APPEND timelineDecoder_sources
        ../../include/armnn/profiling/ITimelineDecoder.hpp
        TimelineCaptureCommandHandler.cpp
        TimelineCaptureCommandHandler.hpp
        TimelineDecoder.cpp
        TimelineDecoder.hpp
        TimelineDirectoryCaptureCommandHandler.cpp
        TimelineDirectoryCaptureCommandHandler.hpp
        )

include_directories(../timelineDecoder ../profiling)

add_library_ex(timelineDecoder SHARED ${timelineDecoder_sources})

set_target_properties(timelineDecoder PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )