From f4e09126214b7cf231907e53dd1a277d5f253812 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 18 Nov 2025 08:22:37 +0000 Subject: [PATCH] not needed git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@752 b9cfdab3-6d41-4d17-bbe4-086880011989 --- CMakeLists.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef53580..c6888f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -122,7 +122,6 @@ else() find_package(PkgConfig) pkg_check_modules(X11 REQUIRED x11) pkg_check_modules(XRENDER REQUIRED xrender) - pkg_check_modules(XCURSOR REQUIRED xcursor) target_sources( Mw @@ -134,9 +133,9 @@ else() PRIVATE USE_X11 ) - list(APPEND INCLUDE_DIRS ${X11_INCLUDE_DIRS} ${XRENDER_INCLUDE_DIRS} ${XCURSOR_INCLUDE_DIRS}) - list(APPEND LIBRARY_DIRS ${X11_LIBRARY_DIRS} ${XRENDER_LIBRARY_DIRS} ${XCURSOR_LIBRARY_DIRS}) - list(APPEND LIBRARIES ${X11_LIBRARIES} ${XRENDER_LIBRARIES} ${XCURSOR_LIBRARIES} m) + list(APPEND INCLUDE_DIRS ${X11_INCLUDE_DIRS} ${XRENDER_INCLUDE_DIRS}) + list(APPEND LIBRARY_DIRS ${X11_LIBRARY_DIRS} ${XRENDER_LIBRARY_DIRS}) + list(APPEND LIBRARIES ${X11_LIBRARIES} ${XRENDER_LIBRARIES} m) if(CMAKE_SYSTEM_NAME STREQUAL "Linux") list(APPEND LIBRARIES dl) endif()