Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
Krfb
Commits
1222c206
Commit
1222c206
authored
Jan 24, 2022
by
Luke Dashjr
Browse files
Add CMake option DISABLE_PIPEWIRE to skip dependency check
parent
25f5492f
Pipeline
#128880
passed with stage
in 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
1222c206
...
...
@@ -79,7 +79,10 @@ include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} )
find_package
(
LibVNCServer REQUIRED
)
pkg_check_modules
(
PipeWire IMPORTED_TARGET libpipewire-0.3
)
option
(
DISABLE_PIPEWIRE
"Disable PipeWire support."
OFF
)
if
(
NOT DISABLE_PIPEWIRE
)
pkg_check_modules
(
PipeWire IMPORTED_TARGET libpipewire-0.3
)
endif
()
add_feature_info
(
PipeWire PipeWire_FOUND
"Required for pipewire screencast plugin"
)
find_package
(
PlasmaWaylandProtocols 1.5.0
)
...
...
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