Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
nheko
Commits
236bf09a
Commit
236bf09a
authored
4 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Explicitly mention, if call support is enabled at build time
fixes #366
parent
1db68109
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#293
passed
4 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+9
-0
9 additions, 0 deletions
CMakeLists.txt
with
9 additions
and
0 deletions
CMakeLists.txt
+
9
−
0
View file @
236bf09a
...
...
@@ -446,6 +446,15 @@ endif()
include
(
FindPkgConfig
)
pkg_check_modules
(
GSTREAMER IMPORTED_TARGET gstreamer-sdp-1.0>=1.14 gstreamer-webrtc-1.0>=1.14
)
if
(
TARGET PkgConfig::GSTREAMER
)
add_feature_info
(
voip ON
"GStreamer found. Call support is enabled
automatically."
)
else
()
add_feature_info
(
voip OFF
"GStreamer could not be found on your system.
As a consequence call support has been disabled. If you don't want that,
make sure gstreamer-sdp-1.0>=1.16 gstreamer-webrtc-1.0>=1.16 can be found
via pkgconfig."
)
endif
()
# single instance functionality
set
(
QAPPLICATION_CLASS QApplication CACHE STRING
"Inheritance class for SingleApplication"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment