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

Merge branch '1.1.2-release' into 'master'

Version 1.1.2

See merge request !7
parents 177ce617 a3821c98
No related branches found
Tags v1.1.2
1 merge request!7Version 1.1.2
# libaec Changelog
All notable changes to libaec will be documented in this file.
## [1.1.2] - 2023-10-04
### Fixed
- Compile issue with MSVC
## [1.1.1] - 2023-09-29
### Fixed
......
cmake_minimum_required(VERSION 3.13...3.19)
project(libaec LANGUAGES C VERSION 1.1.1)
project(libaec LANGUAGES C VERSION 1.1.2)
# Automatically export symbols for Windows DLLs
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
......
......@@ -2,7 +2,7 @@ AC_PREREQ([2.71])
m4_define([VERSION_MAJOR], [1])
m4_define([VERSION_MINOR], [1])
m4_define([VERSION_PATCH], [1])
m4_define([VERSION_PATCH], [2])
AC_INIT([libaec],[VERSION_MAJOR.VERSION_MINOR.VERSION_PATCH],[rosenhauer@dkrz.de])
......
......@@ -22,7 +22,7 @@ add_library(aec_shared SHARED "$<TARGET_OBJECTS:aec>")
target_link_libraries(aec_shared PUBLIC aec)
set_target_properties(aec_shared
PROPERTIES
VERSION 0.1.1
VERSION 0.1.2
SOVERSION 0
OUTPUT_NAME aec
PUBLIC_HEADER ${CMAKE_CURRENT_BINARY_DIR}/../include/libaec.h)
......
......@@ -5,7 +5,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include \
lib_LTLIBRARIES = libaec.la libsz.la
libaec_la_SOURCES = encode.c encode_accessors.c decode.c vector.c\
encode.h encode_accessors.h decode.h vector.h
libaec_la_LDFLAGS = -version-info 1:1:1 -no-undefined
libaec_la_LDFLAGS = -version-info 1:2:1 -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