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

Version bump

parent 74e553c5
No related branches found
Tags v1.0.0
No related merge requests found
......@@ -4,9 +4,9 @@ INCLUDE(TestBigEndian)
INCLUDE(CheckCSourceCompiles)
INCLUDE(cmake/macros.cmake)
PROJECT(libaec)
SET(libaec_VERSION_MAJOR 0)
SET(libaec_VERSION_MINOR 3)
SET(libaec_VERSION_PATCH 4)
SET(libaec_VERSION_MAJOR 1)
SET(libaec_VERSION_MINOR 0)
SET(libaec_VERSION_PATCH 0)
SET(CMAKE_BUILD_TYPE Release)
ENABLE_TESTING()
......
2016-11-16 Mathis Rosenhauer <rosenhauer@dkrz.de>
v1.0.0
Include CCSDS test data with libaec. See THANKS
Better compatibility with OSX for make check
......
AC_PREREQ([2.64])
AC_INIT([libaec], [0.3.4], [rosenhauer@dkrz.de])
AC_INIT([libaec], [1.0.0], [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
SOVERSION 0.0.5
SOVERSION 0.0.6
)
ADD_LIBRARY(sz ${LIB_TYPE} sz_compat.c)
SET_TARGET_PROPERTIES(sz PROPERTIES
......
......@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DBUILDING_LIBAEC
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:5:0 -no-undefined
libaec_la_LDFLAGS = -version-info 0:6:0 -no-undefined
libsz_la_SOURCES = sz_compat.c
libsz_la_LIBADD = libaec.la
......
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