Documentation: Add guidance on X11R6 linking warning message

This commit is contained in:
sideshowbarker 2024-07-27 09:37:15 +09:00 committed by Andrew Kaster
parent 0af92e05d8
commit 634b035898
Notes: github-actions[bot] 2024-07-29 05:46:23 +00:00

View file

@ -31,3 +31,17 @@ MinProtocol = TLSv1.2
CipherString = DEFAULT@SECLEVEL=1
Options = UnsafeLegacyRenegotiation
```
#### “Targets may link only to libraries. CMake is dropping the item” message (when building with the Qt chrome on macOS)
When building with the Qt chrome on macOS, you may encounter the following message:
> CMake Warning at /opt/homebrew/Cellar/qt/6.7.0_1/lib/cmake/Qt6/FindWrapOpenGL.cmake:48 (target_link_libraries):
> Target "ladybird" requests linking to directory "/usr/X11R6/lib". Targets
> may link only to libraries. CMake is dropping the item.
…followed by 14-line stack trace, the top of which is this:
> Toolchain/Tarballs/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package)
…and all of it shown in bright yellow, making you think it must be important and something must need to be fixed. But thats not the case. Instead, despite that, youll be able to build successfully with the Qt chrome.