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
BC
public
belr
Commits
3818822f
Commit
3818822f
authored
May 31, 2016
by
Simon Morlat
Browse files
upgrade version number and fill NEWS and README
parent
f849b506
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
3 deletions
+15
-3
CMakeLists.txt
CMakeLists.txt
+2
-2
NEWS
NEWS
+3
-0
README
README
+9
-0
configure.ac
configure.ac
+1
-1
No files found.
CMakeLists.txt
View file @
3818822f
...
...
@@ -24,8 +24,8 @@ cmake_minimum_required(VERSION 3.0)
project
(
BELR C CXX
)
set
(
BELR_MAJOR_VERSION
"0"
)
set
(
BELR_MINOR_VERSION
"
0
"
)
set
(
BELR_MICRO_VERSION
"
1
"
)
set
(
BELR_MINOR_VERSION
"
1
"
)
set
(
BELR_MICRO_VERSION
"
0
"
)
set
(
BELR_VERSION
"
${
BELR_MAJOR_VERSION
}
.
${
BELR_MINOR_VERSION
}
.
${
BELR_MICRO_VERSION
}
"
)
set
(
BELR_SO_VERSION
"1"
)
...
...
NEWS
View file @
3818822f
belr-0.1.0 -- May xxth, 2016
* Fix issue with non-ascii characters in inputs.
* Add CMake scripts.
README
View file @
3818822f
Belr is Belledonne Communications' language recognition library.
It aims at parsing any input formatted according to a language defined by an ABNF grammar, such as the protocols standardized at IETF.
It is based on finite state machine theory and heavily relies on recursivity from an implementation standpoint.
<TODO: provide an example of usage here>
configure.ac
View file @
3818822f
...
...
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([belr], [0.
0.1
], [simon.morlat@linphone.org])
AC_INIT([belr], [0.
1.0
], [simon.morlat@linphone.org])
AC_CONFIG_SRCDIR([src/])
AC_CONFIG_HEADERS([config.h])
...
...
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