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

Version and SOVERSION bump.

parent 2201f28d
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ INCLUDE(CheckCSourceCompiles) ...@@ -5,7 +5,7 @@ INCLUDE(CheckCSourceCompiles)
INCLUDE(cmake/macros.cmake) INCLUDE(cmake/macros.cmake)
PROJECT(libaec) PROJECT(libaec)
SET(libaec_VERSION_MAJOR 0) SET(libaec_VERSION_MAJOR 0)
SET(libaec_VERSION_MINOR 2) SET(libaec_VERSION_MINOR 3)
SET(CMAKE_BUILD_TYPE Release) SET(CMAKE_BUILD_TYPE Release)
ENABLE_TESTING() ENABLE_TESTING()
......
2014-08-06 Mathis Rosenhauer <rosenhauer@dkrz.de>
v0.3 v0.3
Performance improvement for encoding pre-precessed data.
More efficient coding of second extension if reference More efficient coding of second extension if reference
sample is present. sample is present.
......
AC_PREREQ([2.64]) 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_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config]) AC_CONFIG_AUX_DIR([config])
......
SET(libaec_SRCS encode.c encode_accessors.c decode.c) SET(libaec_SRCS encode.c encode_accessors.c decode.c)
ADD_LIBRARY(aec ${LIB_TYPE} ${libaec_SRCS}) ADD_LIBRARY(aec ${LIB_TYPE} ${libaec_SRCS})
SET_TARGET_PROPERTIES(aec PROPERTIES SET_TARGET_PROPERTIES(aec PROPERTIES
VERSION 0 SOVERSION 0.0.1
SOVERSION 0.0
) )
ADD_LIBRARY(sz ${LIB_TYPE} sz_compat.c) ADD_LIBRARY(sz ${LIB_TYPE} sz_compat.c)
SET_TARGET_PROPERTIES(sz PROPERTIES SET_TARGET_PROPERTIES(sz PROPERTIES
VERSION 0 SOVERSION 2.0.1
SOVERSION 0.0
) )
TARGET_LINK_LIBRARIES(sz aec) TARGET_LINK_LIBRARIES(sz aec)
......
lib_LTLIBRARIES = libaec.la libsz.la lib_LTLIBRARIES = libaec.la libsz.la
libaec_la_SOURCES = encode.c encode_accessors.c decode.c \ libaec_la_SOURCES = encode.c encode_accessors.c decode.c \
encode.h encode_accessors.h decode.h 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_SOURCES = sz_compat.c
libsz_la_LIBADD = libaec.la 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 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