From c65f0bebf7a3445b655528a78c23583d2d965a0d Mon Sep 17 00:00:00 2001 From: Twaik Yont Date: Thu, 25 May 2023 07:55:06 +0300 Subject: [PATCH] Fix xcb building (in workflow) --- app/src/main/cpp/recipes/xserver.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/cpp/recipes/xserver.cmake b/app/src/main/cpp/recipes/xserver.cmake index c7d9757..cd6dfff 100644 --- a/app/src/main/cpp/recipes/xserver.cmake +++ b/app/src/main/cpp/recipes/xserver.cmake @@ -423,7 +423,8 @@ set(XSERVER_LIBS ${XSERVER_LIBS} tirpc xcb Xdmcp Xau pixman Xfont2 Xtrans xcb-er add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/tx11.c" "${CMAKE_CURRENT_BINARY_DIR}/tx11.h" COMMAND Python3::Interpreter "${CMAKE_CURRENT_SOURCE_DIR}/libxcb/src/c_client.py" - "-c" "libxcb 1.15" "-l" "X Version 11" "-s" "3" "-p" "xcbproto" "${CMAKE_CURRENT_SOURCE_DIR}/lorie/tx11.xml" + "-c" "libxcb 1.15" "-l" "X Version 11" "-s" "3" "-p" "${CMAKE_CURRENT_SOURCE_DIR}/xcbproto" + "${CMAKE_CURRENT_SOURCE_DIR}/lorie/tx11.xml" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/lorie/tx11.xml" "${CMAKE_CURRENT_SOURCE_DIR}/libxcb/src/c_client.py" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" COMMENT "Generating source code from XML (tx11)"