Revert "Allow manually specifying hyprland headers"

This reverts commit 2ca3a9cc37.
This commit is contained in:
outfoxxed 2023-04-30 20:31:26 -07:00
parent 2ca3a9cc37
commit 7fbee547b4
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E

View file

@ -11,14 +11,7 @@ if(CMAKE_EXPORT_COMPILE_COMMANDS)
endif()
find_package(PkgConfig REQUIRED)
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()
pkg_check_modules(DEPS REQUIRED hyprland pixman-1 libdrm)
add_library(hy3 SHARED
src/main.cpp
@ -26,6 +19,6 @@ add_library(hy3 SHARED
src/SelectionHook.cpp
)
target_include_directories(hy3 PRIVATE ${HYPRLAND_INCLUDE_DIRS} ${DEPS_INCLUDE_DIRS})
target_include_directories(hy3 PRIVATE ${DEPS_INCLUDE_DIRS})
install(TARGETS hy3 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})