Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
libaec
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Mathis Rosenhauer
libaec
Commits
351b61eb
Commit
351b61eb
authored
Nov 16, 2016
by
Mathis Rosenhauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version bump
parent
74e553c5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
6 deletions
+10
-6
CMakeLists.txt
CMakeLists.txt
+3
-3
ChangeLog
ChangeLog
+4
-0
configure.ac
configure.ac
+1
-1
src/CMakeLists.txt
src/CMakeLists.txt
+1
-1
src/Makefile.am
src/Makefile.am
+1
-1
No files found.
CMakeLists.txt
View file @
351b61eb
...
@@ -4,9 +4,9 @@ INCLUDE(TestBigEndian)
...
@@ -4,9 +4,9 @@ INCLUDE(TestBigEndian)
INCLUDE
(
CheckCSourceCompiles
)
INCLUDE
(
CheckCSourceCompiles
)
INCLUDE
(
cmake/macros.cmake
)
INCLUDE
(
cmake/macros.cmake
)
PROJECT
(
libaec
)
PROJECT
(
libaec
)
SET
(
libaec_VERSION_MAJOR
0
)
SET
(
libaec_VERSION_MAJOR
1
)
SET
(
libaec_VERSION_MINOR
3
)
SET
(
libaec_VERSION_MINOR
0
)
SET
(
libaec_VERSION_PATCH
4
)
SET
(
libaec_VERSION_PATCH
0
)
SET
(
CMAKE_BUILD_TYPE Release
)
SET
(
CMAKE_BUILD_TYPE Release
)
ENABLE_TESTING
()
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
Include CCSDS test data with libaec. See THANKS
Better compatibility with OSX for make check
Better compatibility with OSX for make check
...
...
configure.ac
View file @
351b61eb
AC_PREREQ([2.64])
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_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_AUX_DIR([config])
...
...
src/CMakeLists.txt
View file @
351b61eb
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
SOVERSION 0.0.
5
SOVERSION 0.0.
6
)
)
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
...
...
src/Makefile.am
View file @
351b61eb
...
@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DBUILDING_LIBAEC
...
@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DBUILDING_LIBAEC
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:
5
:0
-no-undefined
libaec_la_LDFLAGS
=
-version-info
0:
6
:0
-no-undefined
libsz_la_SOURCES
=
sz_compat.c
libsz_la_SOURCES
=
sz_compat.c
libsz_la_LIBADD
=
libaec.la
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