Skip to content
Snippets Groups Projects
Commit f9872d9c authored by Mathis Rosenhauer's avatar Mathis Rosenhauer
Browse files

Version and SOVERSION bump.

parent b2ef033e
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ INCLUDE(CheckCSourceCompiles)
INCLUDE(cmake/macros.cmake)
PROJECT(libaec)
SET(libaec_VERSION_MAJOR 0)
SET(libaec_VERSION_MINOR 2)
SET(libaec_VERSION_MINOR 3)
SET(CMAKE_BUILD_TYPE Release)
ENABLE_TESTING()
......
2014-08-06 Mathis Rosenhauer <rosenhauer@dkrz.de>
v0.3
Performance improvement for encoding pre-precessed data.
More efficient coding of second extension if reference
sample is present.
......
AC_PREREQ([2.64])
AC_INIT([libaec], [0.2], [rosenhauer@dkrz.de])
AC_INIT([libaec], [0.3], [rosenhauer@dkrz.de])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
......
SET(libaec_SRCS encode.c encode_accessors.c decode.c)
ADD_LIBRARY(aec ${LIB_TYPE} ${libaec_SRCS})
SET_TARGET_PROPERTIES(aec PROPERTIES
VERSION 0
SOVERSION 0.0
SOVERSION 0.0.1
)
ADD_LIBRARY(sz ${LIB_TYPE} sz_compat.c)
SET_TARGET_PROPERTIES(sz PROPERTIES
VERSION 0
SOVERSION 0.0
SOVERSION 2.0.1
)
TARGET_LINK_LIBRARIES(sz aec)
......
lib_LTLIBRARIES = libaec.la libsz.la
libaec_la_SOURCES = encode.c encode_accessors.c decode.c \
encode.h encode_accessors.h decode.h
libaec_la_LDFLAGS = -version-info 0:0:0
libaec_la_LDFLAGS = -version-info 0:1:0
libsz_la_SOURCES = sz_compat.c
libsz_la_LIBADD = libaec.la
libsz_la_LDFLAGS = -version-info 0:0:0
libsz_la_LDFLAGS = -version-info 2:1:0
include_HEADERS = libaec.h szlib.h
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment