Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mathis Rosenhauer
libaec
Commits
9ea83102
Unverified
Commit
9ea83102
authored
Sep 17, 2021
by
Mathis Rosenhauer
Committed by
GitHub
Sep 17, 2021
Browse files
Version 1.0.6 (#21)
parent
0b3c721c
Changes
5
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
9ea83102
# libaec Changelog
All notable changes to libaec will be documented in this file.
## [1.0.5]
## [1.0.6] - 2021-09-17
### Changed
-
Improved cmake for mingw by Miloš Komarčević
## [1.0.5] - 2021-06-16
### Changed
-
Updated documentation to new 121.0-B-3 standard. The new standard
...
...
CMakeLists.txt
View file @
9ea83102
cmake_minimum_required
(
VERSION 3.13...3.19
)
project
(
libaec LANGUAGES C VERSION 1.0.
5
)
project
(
libaec LANGUAGES C VERSION 1.0.
6
)
# Automatically export symbols for Windows DLLs
set
(
CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE
)
...
...
configure.ac
View file @
9ea83102
AC_PREREQ([2.64])
AC_INIT([libaec], [1.0.
5
], [rosenhauer@dkrz.de])
AC_INIT([libaec], [1.0.
6
], [rosenhauer@dkrz.de])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
...
...
src/CMakeLists.txt
View file @
9ea83102
...
...
@@ -21,7 +21,7 @@ add_library(aec_shared SHARED "$<TARGET_OBJECTS:aec>")
target_link_libraries
(
aec_shared PUBLIC aec
)
set_target_properties
(
aec_shared
PROPERTIES
VERSION 0.0.1
1
VERSION 0.0.1
2
SOVERSION 0
OUTPUT_NAME aec
PUBLIC_HEADER ../include/libaec.h
)
...
...
src/Makefile.am
View file @
9ea83102
...
...
@@ -3,7 +3,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -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:1
1
:0
-no-undefined
libaec_la_LDFLAGS
=
-version-info
0:1
2
:0
-no-undefined
libsz_la_SOURCES
=
sz_compat.c
libsz_la_LIBADD
=
libaec.la
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment