Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
linphone-cmake-builder
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
linphone-cmake-builder
Commits
42da7a8b
Commit
42da7a8b
authored
Mar 10, 2014
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add builder for msisac.
parent
847ec3ad
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
0 deletions
+39
-0
CMakeLists.txt
builders/CMakeLists.txt
+3
-0
linphone.cmake
builders/linphone.cmake
+3
-0
msisac.cmake
builders/msisac.cmake
+33
-0
No files found.
builders/CMakeLists.txt
View file @
42da7a8b
...
...
@@ -69,6 +69,9 @@ endif(${ENABLE_G729})
if
(
${
ENABLE_ILBC
}
)
list
(
APPEND LINPHONE_BUILDER_BUILDERS libilbcrfc3951 msilbc
)
endif
(
${
ENABLE_ILBC
}
)
if
(
${
ENABLE_ISAC
}
)
list
(
APPEND LINPHONE_BUILDER_BUILDERS msisac
)
endif
(
${
ENABLE_ISAC
}
)
if
(
${
ENABLE_SILK
}
)
list
(
APPEND LINPHONE_BUILDER_BUILDERS mssilk
)
endif
(
${
ENABLE_SILK
}
)
...
...
builders/linphone.cmake
View file @
42da7a8b
...
...
@@ -52,6 +52,9 @@ else(WIN32)
if
(
${
ENABLE_ILBC
}
)
list
(
APPEND EP_linphone_DEPENDENCIES EP_msilbc
)
endif
(
${
ENABLE_ILBC
}
)
if
(
${
ENABLE_ISAC
}
)
list
(
APPEND EP_linphone_DEPENDENCIES EP_msisac
)
endif
(
${
ENABLE_ISAC
}
)
if
(
${
ENABLE_SILK
}
)
list
(
APPEND EP_linphone_DEPENDENCIES EP_mssilk
)
endif
(
${
ENABLE_SILK
}
)
...
...
builders/msisac.cmake
0 → 100644
View file @
42da7a8b
############################################################################
# msisac.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_msisac_GIT_REPOSITORY
"git://git.linphone.org/msisac.git"
)
set
(
EP_msisac_GIT_TAG
"fafe68323df68b5f4e18b15b350134a54888f2b4"
)
# Branch 'master'
set
(
EP_msisac_USE_AUTOTOOLS
"yes"
)
set
(
EP_msisac_USE_AUTOGEN
"yes"
)
set
(
EP_msisac_CROSS_COMPILATION_OPTIONS
"--prefix=
${
CMAKE_INSTALL_PREFIX
}
"
"--host=
${
LINPHONE_BUILDER_TOOLCHAIN_HOST
}
"
)
set
(
EP_msisac_LINKING_TYPE
"--disable-static"
"--enable-shared"
)
set
(
EP_msisac_DEPENDENCIES EP_ms2
)
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