Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ca902a4

Browse files
committed
Remove XCB library from the list of dependencies
We don't use it anymore (all the tablet code has been merged back into Qt).
1 parent 0f9c547 commit ca902a4

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,12 +423,9 @@ if (NOT WIN32 AND NOT APPLE)
423423
set(HAVE_X11 TRUE)
424424
add_definitions(-DHAVE_X11)
425425

426-
find_package(XCB COMPONENTS XCB ATOM)
427-
set(HAVE_XCB ${XCB_FOUND})
428426
else()
429427
set(HAVE_DBUS FALSE)
430428
set(HAVE_X11 FALSE)
431-
set(HAVE_XCB FALSE)
432429
endif()
433430

434431

libs/ui/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -576,8 +576,7 @@ endif()
576576

577577
if (NOT WIN32 AND NOT APPLE)
578578
target_link_libraries(kritaui ${X11_X11_LIB}
579-
${X11_Xinput_LIB}
580-
${XCB_LIBRARIES})
579+
${X11_Xinput_LIB})
581580
endif()
582581

583582
if(APPLE)

0 commit comments

Comments
 (0)