From 9bd3ab717ebee3dbe43cf439b6acf6d6c0cb321d Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Sat, 13 Feb 2016 11:13:15 +0100 Subject: [PATCH] Print libXtst instead of libXtest in the feature summary. The protocol is called XTEST but the library libxtst. Closes #440 --- src/autotype/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/autotype/CMakeLists.txt b/src/autotype/CMakeLists.txt index a0f7877fc..fb6e51277 100644 --- a/src/autotype/CMakeLists.txt +++ b/src/autotype/CMakeLists.txt @@ -2,7 +2,7 @@ if(Q_WS_X11) find_package(X11) if(PRINT_SUMMARY) add_feature_info(libXi X11_Xi_FOUND "The X11 Xi Protocol library is required for auto-type") - add_feature_info(libXtest X11_XTest_FOUND "The X11 XTEST Protocol library is required for auto-type") + add_feature_info(libXtst X11_XTest_FOUND "The X11 XTEST Protocol library is required for auto-type") endif() if(X11_FOUND AND X11_Xi_FOUND AND X11_XTest_FOUND)