From d23cdd1e2ce3c26ea3f9722b24c92c826acd7c9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 6 Dec 2021 15:43:00 +0100 Subject: [PATCH] cmake: Do not install private headers. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The headers installed in the private directory seem to be unnecessary when building other applications or libraries that use TQScintilla library. Therefore, there is no obvious reason to be installed. Signed-off-by: Slávek Banko --- qt/CMakeLists.txt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/qt/CMakeLists.txt b/qt/CMakeLists.txt index fb30034..865d3b1 100644 --- a/qt/CMakeLists.txt +++ b/qt/CMakeLists.txt @@ -78,11 +78,3 @@ install( FILES ${_includes} DESTINATION ${TQT_INCLUDES_DIR} ) - -file( GLOB _privates ${CMAKE_SOURCE_DIR}/include/*.h ) - -install( - FILES ${_privates} - DESTINATION ${TQT_INCLUDES_DIR}/private -) -