60 lines
2.4 KiB
Diff
60 lines
2.4 KiB
Diff
|
--- armnn-19.02.orig/CMakeLists.txt 2019-04-11 10:31:03.241484945 +0200
|
||
|
+++ armnn-19.02/CMakeLists.txt 2019-04-11 10:32:20.878025310 +0200
|
||
|
@@ -82,6 +82,7 @@ if(BUILD_CAFFE_PARSER)
|
||
|
|
||
|
target_link_libraries(armnnCaffeParser armnn)
|
||
|
target_link_libraries(armnnCaffeParser ${PROTOBUF_LIBRARIES})
|
||
|
+ set_target_properties(armnnCaffeParser PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
|
||
|
|
||
|
endif()
|
||
|
|
||
|
@@ -106,6 +107,7 @@ if(BUILD_ONNX_PARSER)
|
||
|
|
||
|
# Protobuf
|
||
|
target_link_libraries(armnnOnnxParser ${PROTOBUF_LIBRARIES})
|
||
|
+ set_target_properties(armnnOnnxParser PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
|
||
|
endif()
|
||
|
|
||
|
if(BUILD_TF_PARSER)
|
||
|
@@ -129,6 +131,7 @@ if(BUILD_TF_PARSER)
|
||
|
|
||
|
# Protobuf (use the specific version tensorflow wants)
|
||
|
target_link_libraries(armnnTfParser ${PROTOBUF_LIBRARIES})
|
||
|
+ set_target_properties(armnnTfParser PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
|
||
|
endif()
|
||
|
|
||
|
if(BUILD_TF_LITE_PARSER)
|
||
|
@@ -147,6 +150,7 @@ if(BUILD_TF_LITE_PARSER)
|
||
|
|
||
|
target_link_libraries(armnnTfLiteParser ${Boost_FILESYSTEM_LIBRARY} ${Boost_THREAD_LIBRARY})
|
||
|
target_link_libraries(armnnTfLiteParser armnn ${FLATBUFFERS_LIBRARY})
|
||
|
+ set_target_properties(armnnTfLiteParser PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
|
||
|
endif()
|
||
|
|
||
|
if(BUILD_ARMNN_SERIALIZER)
|
||
|
@@ -178,6 +182,7 @@ if(BUILD_ARMNN_SERIALIZER)
|
||
|
target_include_directories(armnnSerializer SYSTEM PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/src/armnnSerializer)
|
||
|
|
||
|
target_link_libraries(armnnSerializer armnn ${FLATBUFFERS_LIBRARY})
|
||
|
+ set_target_properties(armnnSerializer PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
|
||
|
endif()
|
||
|
|
||
|
if(BUILD_ARMNN_QUANTIZER)
|
||
|
@@ -208,6 +213,8 @@ if(BUILD_ARMNN_QUANTIZER)
|
||
|
if(Threads_FOUND AND (NOT ("${CMAKE_SYSTEM_NAME}" STREQUAL Android)))
|
||
|
target_link_libraries(ArmnnQuantizer pthread)
|
||
|
endif()
|
||
|
+
|
||
|
+ set_target_properties(ArmnnQuantizer PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
|
||
|
|
||
|
endif()
|
||
|
|
||
|
@@ -449,6 +456,7 @@ endif()
|
||
|
if(PROFILING_BACKEND_STREAMLINE)
|
||
|
target_link_libraries(armnn pthread)
|
||
|
endif()
|
||
|
+set_target_properties( armnn PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
|
||
|
|
||
|
if(BUILD_UNIT_TESTS)
|
||
|
set(unittest_sources)
|