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
f1a23286
Commit
f1a23286
authored
Mar 16, 2015
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add mswasapi builder.
parent
5663eb6c
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
42 additions
and
0 deletions
+42
-0
builders/CMakeLists.txt
builders/CMakeLists.txt
+3
-0
builders/mswasapi.cmake
builders/mswasapi.cmake
+29
-0
cmake/LinphoneBuilderOptions.cmake
cmake/LinphoneBuilderOptions.cmake
+2
-0
configs/config-bb10.cmake
configs/config-bb10.cmake
+1
-0
configs/config-desktop.cmake
configs/config-desktop.cmake
+1
-0
configs/config-flexisip.cmake
configs/config-flexisip.cmake
+1
-0
configs/config-ios.cmake
configs/config-ios.cmake
+1
-0
configs/config-python-raspberry.cmake
configs/config-python-raspberry.cmake
+2
-0
configs/config-python.cmake
configs/config-python.cmake
+1
-0
configs/config-webplugin.cmake
configs/config-webplugin.cmake
+1
-0
No files found.
builders/CMakeLists.txt
View file @
f1a23286
...
...
@@ -156,6 +156,9 @@ else()
linphone_builder_add_builder_to_target
(
TARGET_ms2plugins openh264
)
linphone_builder_add_builder_to_target
(
TARGET_ms2plugins msopenh264
)
endif
()
if
(
ENABLE_WASAPI
)
linphone_builder_add_builder_to_target
(
TARGET_ms2plugins mswasapi
)
endif
()
if
(
ENABLE_X264
)
linphone_builder_add_builder_to_target
(
TARGET_ms2plugins x264
)
linphone_builder_add_builder_to_target
(
TARGET_ms2plugins msx264
)
...
...
builders/mswasapi.cmake
0 → 100644
View file @
f1a23286
############################################################################
# mswasapi.cmake
# Copyright (C) 2015 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_mswasapi_GIT_REPOSITORY
"git://git.linphone.org/mswasapi.git"
)
set
(
EP_mswasapi_GIT_TAG_LATEST
"master"
)
set
(
EP_mswasapi_GIT_TAG
"21a6cf45f5d0acaf3f6ba021af5710ccaaec37a2"
)
set
(
EP_mswasapi_CMAKE_OPTIONS
)
set
(
EP_mswasapi_EXTRA_LDFLAGS
"/SAFESEH:NO"
)
set
(
EP_mswasapi_DEPENDENCIES EP_ms2
)
cmake/LinphoneBuilderOptions.cmake
View file @
f1a23286
...
...
@@ -63,6 +63,8 @@ linphone_builder_add_feature_info("Silk" ENABLE_SILK "Silk audio encoding/decodi
option
(
ENABLE_SPEEX
"Enable speex audio codec support."
${
DEFAULT_VALUE_ENABLE_SPEEX
}
)
linphone_builder_add_feature_info
(
"Speex"
ENABLE_SPEEX
"Speex audio encoding/decoding support."
)
cmake_dependent_option
(
ENABLE_WASAPI
"Enable Windows Audio Session API (WASAPI) sound card support."
${
DEFAULT_VALUE_ENABLE_WASAPI
}
"MSVC"
OFF
)
linphone_builder_add_feature_info
(
"WASAPI"
ENABLE_WASAPI
"Windows Audio Session API (WASAPI) sound card support."
)
option
(
ENABLE_WEBRTC_AEC
"Enable WebRTC echo canceller support."
${
DEFAULT_VALUE_ENABLE_WEBRTC_AEC
}
)
linphone_builder_add_feature_info
(
"WebRTC AEC"
ENABLE_WEBRTC_AEC
"WebRTC echo canceller support."
)
...
...
configs/config-bb10.cmake
View file @
f1a23286
...
...
@@ -35,6 +35,7 @@ set(DEFAULT_VALUE_ENABLE_ISAC OFF)
set
(
DEFAULT_VALUE_ENABLE_OPUS ON
)
set
(
DEFAULT_VALUE_ENABLE_SILK OFF
)
set
(
DEFAULT_VALUE_ENABLE_SPEEX ON
)
set
(
DEFAULT_VALUE_ENABLE_WASAPI OFF
)
set
(
DEFAULT_VALUE_ENABLE_WEBRTC_AEC OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263 OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263P OFF
)
...
...
configs/config-desktop.cmake
View file @
f1a23286
...
...
@@ -35,6 +35,7 @@ set(DEFAULT_VALUE_ENABLE_ISAC ON)
set
(
DEFAULT_VALUE_ENABLE_OPUS ON
)
set
(
DEFAULT_VALUE_ENABLE_SILK ON
)
set
(
DEFAULT_VALUE_ENABLE_SPEEX ON
)
set
(
DEFAULT_VALUE_ENABLE_WASAPI ON
)
set
(
DEFAULT_VALUE_ENABLE_WEBRTC_AEC OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263 ON
)
set
(
DEFAULT_VALUE_ENABLE_H263P ON
)
...
...
configs/config-flexisip.cmake
View file @
f1a23286
...
...
@@ -35,6 +35,7 @@ set(DEFAULT_VALUE_ENABLE_ISAC OFF)
set
(
DEFAULT_VALUE_ENABLE_OPUS OFF
)
set
(
DEFAULT_VALUE_ENABLE_SILK OFF
)
set
(
DEFAULT_VALUE_ENABLE_SPEEX OFF
)
set
(
DEFAULT_VALUE_ENABLE_WASAPI OFF
)
set
(
DEFAULT_VALUE_ENABLE_WEBRTC_AEC OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263 OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263P OFF
)
...
...
configs/config-ios.cmake
View file @
f1a23286
...
...
@@ -35,6 +35,7 @@ set(DEFAULT_VALUE_ENABLE_ISAC OFF)
set
(
DEFAULT_VALUE_ENABLE_OPUS ON
)
set
(
DEFAULT_VALUE_ENABLE_SILK OFF
)
set
(
DEFAULT_VALUE_ENABLE_SPEEX ON
)
set
(
DEFAULT_VALUE_ENABLE_WASAPI OFF
)
set
(
DEFAULT_VALUE_ENABLE_WEBRTC_AEC OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263 OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263P OFF
)
...
...
configs/config-python-raspberry.cmake
View file @
f1a23286
...
...
@@ -28,6 +28,8 @@ set(PACKAGE_NAME "linphone4raspberry")
include
(
"configs/config-python.cmake"
)
set
(
DEFAULT_VALUE_ENABLE_WASAPI OFF
)
# ffmpeg
set
(
EP_ffmpeg_CROSS_COMPILATION_OPTIONS
"--prefix=
${
CMAKE_INSTALL_PREFIX
}
"
...
...
configs/config-python.cmake
View file @
f1a23286
...
...
@@ -35,6 +35,7 @@ set(DEFAULT_VALUE_ENABLE_ISAC OFF)
set
(
DEFAULT_VALUE_ENABLE_OPUS ON
)
set
(
DEFAULT_VALUE_ENABLE_SILK OFF
)
set
(
DEFAULT_VALUE_ENABLE_SPEEX ON
)
set
(
DEFAULT_VALUE_ENABLE_WASAPI ON
)
set
(
DEFAULT_VALUE_ENABLE_WEBRTC_AEC OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263 OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263P OFF
)
...
...
configs/config-webplugin.cmake
View file @
f1a23286
...
...
@@ -35,6 +35,7 @@ set(DEFAULT_VALUE_ENABLE_ISAC OFF)
set
(
DEFAULT_VALUE_ENABLE_OPUS ON
)
set
(
DEFAULT_VALUE_ENABLE_SILK OFF
)
set
(
DEFAULT_VALUE_ENABLE_SPEEX ON
)
set
(
DEFAULT_VALUE_ENABLE_WASAPI ON
)
set
(
DEFAULT_VALUE_ENABLE_WEBRTC_AEC OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263 OFF
)
set
(
DEFAULT_VALUE_ENABLE_H263P OFF
)
...
...
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