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

if(BUILD_TIMELINE_DECODER)
    set(timelineDecoder_sources)
    list(APPEND timelineDecoder_sources
            ../../include/armnn/profiling/ITimelineDecoder.hpp
            TimelineCaptureCommandHandler.cpp
            TimelineCaptureCommandHandler.hpp
            JSONTimelineDecoder.cpp
            JSONTimelineDecoder.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 LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
    set_target_properties(timelineDecoder PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )

    install(TARGETS timelineDecoder
            LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
            RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()