Allow manually specifying hyprland headers

This commit is contained in:
outfoxxed 2023-04-30 13:21:54 -07:00
parent 136c910c5a
commit 2ca3a9cc37
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E

View file

@ -11,7 +11,14 @@ if(CMAKE_EXPORT_COMPILE_COMMANDS)
endif()
find_package(PkgConfig REQUIRED)
pkg_check_modules(DEPS REQUIRED hyprland pixman-1 libdrm)
pkg_check_modules(DEPS REQUIRED pixman-1 libdrm)
if(DEFINED ENV{HYPRLAND_INCLUDE})
set(HYPRLAND_INCLUDE_DIRS $ENV{HYPRLAND_INCLUDE})
message(STATUS "Using provided hyprland include dir " ${HYPRLAND_INCLUDE_DIRS} " instead of pkg-config")
else()
pkg_check_modules(HYPRLAND REQUIRED hyprland)
endif()
add_library(hy3 SHARED
src/main.cpp
@ -19,6 +26,6 @@ add_library(hy3 SHARED
src/SelectionHook.cpp
)
target_include_directories(hy3 PRIVATE ${DEPS_INCLUDE_DIRS})
target_include_directories(hy3 PRIVATE ${HYPRLAND_INCLUDE_DIRS} ${DEPS_INCLUDE_DIRS})
install(TARGETS hy3 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})