mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 19:25:58 +01:00
dc469dc4c1
In the case that the prefix is `/usr`, system wlroots headers installed in `/usr/include/wlr` will be preferred over those bundled by hyprland as `-I` directories are searched [from left to right](https://gcc.gnu.org/onlinedocs/cpp/Search-Path.html), which is not great since the system wlroots headers might not be compatible with hyprland. Fix the order of cflags so bundled wlroots headers will be preferred over system ones.
8 lines
266 B
PkgConfig
8 lines
266 B
PkgConfig
prefix="@PREFIX@"
|
|
includedir="${prefix}/include"
|
|
|
|
Name: Hyprland
|
|
URL: https://github.com/hyprwm/Hyprland
|
|
Description: Hyprland header files
|
|
Version: @HYPRLAND_VERSION@
|
|
Cflags: -I"${includedir}/hyprland/protocols" -I"${includedir}/hyprland/wlroots" -I"${includedir}"
|