Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Merge requests
!15
Linux dullahan
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Linux dullahan
linux-cef
into
master
Overview
2
Commits
12
Pipelines
0
Changes
26
Merged
Darl Cat
requested to merge
linux-cef
into
master
3 years ago
Overview
2
Commits
12
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 6
version 7
8c44832e
3 years ago
version 6
6c3d4f05
3 years ago
version 5
b1adea1f
3 years ago
version 4
82b4c80d
3 years ago
version 3
b054b093
3 years ago
version 2
acb237c2
3 years ago
version 1
42d1c4fd
3 years ago
master (base)
and
version 7
latest version
0b3e9e8b
12 commits,
3 years ago
version 7
8c44832e
11 commits,
3 years ago
version 6
6c3d4f05
10 commits,
3 years ago
version 5
b1adea1f
9 commits,
3 years ago
version 4
82b4c80d
7 commits,
3 years ago
version 3
b054b093
7 commits,
3 years ago
version 2
acb237c2
6 commits,
3 years ago
version 1
42d1c4fd
3 commits,
3 years ago
Show latest version
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
indra/media_plugins/cef/CMakeLists.txt
+
9
−
3
Options
@@ -51,8 +51,14 @@ set (media_plugin_cef_LINK_LIBRARIES
# Select which VolumeCatcher implementation to use
if
(
LINUX
)
message
(
FATAL_ERROR
"CEF plugin has been enabled for a Linux compile.
\n
"
" Please create a volume_catcher implementation for this platform."
)
if
(
PULSEAUDIO_FOUND
)
list
(
APPEND media_plugin_cef_SOURCE_FILES linux_volume_catcher.cpp
)
else
(
PULSEAUDIO_FOUND
)
list
(
APPEND media_plugin_cef_SOURCE_FILES dummy_volume_catcher.cpp
)
endif
(
PULSEAUDIO_FOUND
)
list
(
APPEND media_plugin_webkit_LINK_LIBRARIES
${
UI_LIBRARIES
}
# for glib/GTK
)
elseif
(
DARWIN
)
list
(
APPEND media_plugin_cef_SOURCE_FILES mac_volume_catcher_null.cpp
)
find_library
(
CORESERVICES_LIBRARY CoreServices
)
@@ -60,7 +66,7 @@ elseif (DARWIN)
list
(
APPEND media_plugin_cef_LINK_LIBRARIES
${
CORESERVICES_LIBRARY
}
# for Component Manager calls
${
AUDIOUNIT_LIBRARY
}
# for AudioUnit calls
)
)
elseif
(
WINDOWS
)
list
(
APPEND media_plugin_cef_SOURCE_FILES windows_volume_catcher.cpp
)
endif
(
LINUX
)
Loading