Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
linphone-cmake-builder
Commits
c5407978
Commit
c5407978
authored
Mar 10, 2014
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add builder for bcg729.
parent
8451e3c5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
0 deletions
+39
-0
builders/CMakeLists.txt
builders/CMakeLists.txt
+3
-0
builders/bcg729.cmake
builders/bcg729.cmake
+33
-0
builders/linphone.cmake
builders/linphone.cmake
+3
-0
No files found.
builders/CMakeLists.txt
View file @
c5407978
...
...
@@ -63,6 +63,9 @@ list(APPEND LINPHONE_BUILDER_BUILDERS
if
(
${
ENABLE_AMR
}
)
list
(
APPEND LINPHONE_BUILDER_BUILDERS opencoreamr msamr
)
endif
(
${
ENABLE_AMR
}
)
if
(
${
ENABLE_G729
}
)
list
(
APPEND LINPHONE_BUILDER_BUILDERS bcg729
)
endif
(
${
ENABLE_G729
}
)
list
(
APPEND LINPHONE_BUILDER_BUILDERS linphone
)
...
...
builders/bcg729.cmake
0 → 100644
View file @
c5407978
############################################################################
# bcg729.cmake
# Copyright (C) 2014 Belledonne Communications, Grenoble France
#
############################################################################
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
############################################################################
set
(
EP_bcg729_GIT_REPOSITORY
"git://git.linphone.org/bcg729.git"
)
set
(
EP_bcg729_GIT_TAG
"2634faf85a13f79fece045e37515ddd1ea48dc25"
)
# Branch 'master'
set
(
EP_bcg729_USE_AUTOTOOLS
"yes"
)
set
(
EP_bcg729_USE_AUTOGEN
"yes"
)
set
(
EP_bcg729_CROSS_COMPILATION_OPTIONS
"--prefix=
${
CMAKE_INSTALL_PREFIX
}
"
"--host=
${
LINPHONE_BUILDER_TOOLCHAIN_HOST
}
"
)
set
(
EP_bcg729_LINKING_TYPE
"--disable-static"
"--enable-shared"
)
set
(
EP_bcg729_DEPENDENCIES EP_ms2
)
builders/linphone.cmake
View file @
c5407978
...
...
@@ -46,6 +46,9 @@ else(WIN32)
if
(
${
ENABLE_AMR
}
)
list
(
APPEND EP_linphone_DEPENDENCIES EP_msamr
)
endif
(
${
ENABLE_AMR
}
)
if
(
${
ENABLE_G729
}
)
list
(
APPEND EP_linphone_DEPENDENCIES EP_bcg729
)
endif
(
${
ENABLE_G729
}
)
if
(
${
ENABLE_ZRTP
}
)
# TODO
...
...
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