diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-12-06 15:43:00 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-12-08 16:28:12 +0100 |
commit | 8d464c8f6c082cb79b8d8d90e07fa5b54d414b54 (patch) | |
tree | 155d3d5548c7ff495e65041e1a234eb95ba97164 | |
parent | 69b6fb9316269bec41a89928c13ba0256a28a5ef (diff) | |
download | tqscintilla-8d464c8f6c082cb79b8d8d90e07fa5b54d414b54.tar.gz tqscintilla-8d464c8f6c082cb79b8d8d90e07fa5b54d414b54.zip |
cmake: Do not install private headers.
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 <slavek.banko@axis.cz>
(cherry picked from commit d23cdd1e2ce3c26ea3f9722b24c92c826acd7c9c)
-rw-r--r-- | qt/CMakeLists.txt | 8 |
1 files changed, 0 insertions, 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 -) - |