Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mathis Rosenhauer
libaec
Commits
351b61eb
Commit
351b61eb
authored
Nov 16, 2016
by
Mathis Rosenhauer
Browse files
Version bump
parent
74e553c5
Changes
5
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
351b61eb
...
...
@@ -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
()
...
...
ChangeLog
View file @
351b61eb
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
...
...
configure.ac
View file @
351b61eb
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])
...
...
src/CMakeLists.txt
View file @
351b61eb
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
...
...
src/Makefile.am
View file @
351b61eb
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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