blob: d1b4dee11d5141724dff47deb412b538d8927435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
https://bugs.gentoo.org/842984
https://github.com/mumble-voip/mumble/commit/fefdd79ebcd53a3035967789d004938ee39e2030
Fix underlinking against Poco.
--- a/src/mumble/CMakeLists.txt
+++ b/src/mumble/CMakeLists.txt
@@ -383,11 +383,16 @@ target_include_directories(mumble
"${PLUGINS_DIR}"
)
-find_pkg(Poco COMPONENTS Zip)
+find_pkg(Poco
+ COMPONENTS
+ XML
+ Zip
+)
if(TARGET Poco::Zip)
target_link_libraries(mumble
PRIVATE
+ Poco::XML
Poco::Zip
)
else()
|