Takashi Iwai
123eb53ee0
To be used by libavif OBS-URL: https://build.opensuse.org/request/show/991738 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libyuv?expand=0&rev=1
20 lines
770 B
Diff
20 lines
770 B
Diff
From: Peter Lemenkov <lemenkov@gmail.com>
|
|
Date: Fri, 21 Sep 2018 12:45:55 +0200
|
|
Subject: [PATCH] Use a proper so-version
|
|
|
|
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index ed4948f0..e1f87062 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -30,6 +30,8 @@ ADD_LIBRARY ( ${ly_lib_shared} SHARED ${ly_source_files} )
|
|
SET_TARGET_PROPERTIES ( ${ly_lib_shared} PROPERTIES OUTPUT_NAME "${ly_lib_name}" )
|
|
SET_TARGET_PROPERTIES ( ${ly_lib_shared} PROPERTIES PREFIX "lib" )
|
|
|
|
+SET_TARGET_PROPERTIES ( ${ly_lib_shared} PROPERTIES VERSION "0.0.0" SOVERSION 0 )
|
|
+
|
|
# this creates the conversion tool
|
|
ADD_EXECUTABLE ( yuvconvert ${ly_base_dir}/util/yuvconvert.cc )
|
|
TARGET_LINK_LIBRARIES ( yuvconvert ${ly_lib_static} )
|