forked from Qortal/Brooklyn
41 lines
1.3 KiB
CMake
41 lines
1.3 KiB
CMake
#
|
|
# Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(BUILD_TIMELINE_DECODER)
|
|
set(pipeCommon_sources)
|
|
list(APPEND pipeCommon_sources
|
|
CommandHandlerFunctor.cpp
|
|
CommandHandlerKey.cpp
|
|
CommandHandlerRegistry.cpp
|
|
CommonProfilingUtils.cpp
|
|
NetworkSockets.cpp
|
|
PacketVersionResolver.cpp
|
|
SwTrace.cpp
|
|
LabelsAndEventClasses.cpp)
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/profiling/common/include)
|
|
include_directories(${PROJECT_SOURCE_DIR}/common/include)
|
|
|
|
if(BUILD_UNIT_TESTS)
|
|
include_directories(${PROJECT_SOURCE_DIR}/src/profiling
|
|
${PROJECT_SOURCE_DIR}/src/armnnUtils)
|
|
target_include_directories(UnitTests PRIVATE ${PROJECT_SOURCE_DIR}/profiling/common/include)
|
|
endif()
|
|
|
|
# will only build a static version of this common code
|
|
# to simplify the build. No extra .so file to deploy to boards etc.
|
|
add_library_ex(pipeCommon STATIC ${pipeCommon_sources})
|
|
|
|
target_compile_definitions(pipeCommon PRIVATE "ARMNN_COMPILING_DLL")
|
|
|
|
# install the target
|
|
install(
|
|
TARGETS pipeCommon
|
|
EXPORT armnn-targets
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
)
|
|
endif()
|