aboutsummaryrefslogtreecommitdiff
path: root/src/timelineDecoder
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2020-03-09 11:04:32 +0000
committerSadik Armagan <sadik.armagan@arm.com>2020-03-09 11:05:25 +0000
commit6f86b69989de2469c0d7cac4c685cd081e6cf812 (patch)
treede2e6a13107f152bfc7555db7dba404ace797bb1 /src/timelineDecoder
parent4d4e0e2530629ae9ecfcb379bf0f27c6b18b6891 (diff)
downloadarmnn-6f86b69989de2469c0d7cac4c685cd081e6cf812.tar.gz
IVGCVSW-4540 Fix master build failure to link UnitTests on Android
Change-Id: I22148a0bf243eabfd045475644510f30096d96e3 Signed-off-by: Jim Flynn <jim.flynn@arm.com> Signed-off-by: Sadik Armagan <sadik.armagan@arm.com>
Diffstat (limited to 'src/timelineDecoder')
-rw-r--r--src/timelineDecoder/CMakeLists.txt34
1 files changed, 21 insertions, 13 deletions
diff --git a/src/timelineDecoder/CMakeLists.txt b/src/timelineDecoder/CMakeLists.txt
index 6b8517acbc..e34fae71fa 100644
--- a/src/timelineDecoder/CMakeLists.txt
+++ b/src/timelineDecoder/CMakeLists.txt
@@ -3,19 +3,27 @@
# 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
- )
+if(BUILD_TIMELINE_DECODER)
+ 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)
+ 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()
-add_library_ex(timelineDecoder SHARED ${timelineDecoder_sources})
-set_target_properties(timelineDecoder PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} ) \ No newline at end of file