From ccf1282c917c3b547ca6f711f4d0913bf16e18b8 Mon Sep 17 00:00:00 2001 From: Markus Elfring Date: Mon, 28 Mar 2011 09:03:04 +0200 Subject: [PATCH] Deletion of "htmlhelp" from link setting in a CMake script (bug #2524, #1957) The library "htmlhelp" is not needed by the graphical user interface at the moment. https://github.com/danmar/cppcheck/commit/2fea5f01d6b8af92a4739eb6bef29fd7044c27c3#gui/gui.pro There are difficulties to fulfil this dependency. Signed-off-by: Markus Elfring --- gui/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index 799395f12..9360a2950 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -117,7 +117,7 @@ if(WIN32) if(NOT CYGWIN) # Windows needs additional shlwapi library. - set(CHECK_LIBS ${CHECK_LIBS} shlwapi htmlhelp) + set(CHECK_LIBS ${CHECK_LIBS} shlwapi) endif() endif()