diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-03-12 03:34:03 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-03-12 15:28:13 +0100 |
commit | f8e520626b8b09927cfa024d1860778466892d4f (patch) | |
tree | 11b2ff0760ecd227d2396475e27f985654b5b233 /quanta/parsers | |
parent | 369d8455ac39aa9f5328b855bd5f456e3f384a63 (diff) | |
download | tdewebdev-f8e520626b8b09927cfa024d1860778466892d4f.tar.gz tdewebdev-f8e520626b8b09927cfa024d1860778466892d4f.zip |
Fix FTBFS with CMake build:r14.0.10
+ Determine TQt and TDE include directories as SYSTEM.
It solves priority for #include "..." × #include <...>
+ Additional linked libraries.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit f4edc50e4756b2289254ee308223faed9be6a2c7)
Diffstat (limited to 'quanta/parsers')
-rw-r--r-- | quanta/parsers/CMakeLists.txt | 3 | ||||
-rw-r--r-- | quanta/parsers/dtd/CMakeLists.txt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/quanta/parsers/CMakeLists.txt b/quanta/parsers/CMakeLists.txt index 53536e0b..a7c6adc4 100644 --- a/quanta/parsers/CMakeLists.txt +++ b/quanta/parsers/CMakeLists.txt @@ -19,6 +19,9 @@ include_directories( ${CMAKE_SOURCE_DIR}/quanta/utility ${CMAKE_SOURCE_DIR}/quanta/treeviews ${CMAKE_SOURCE_DIR}/quanta/parts/kafka +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/quanta/parsers/dtd/CMakeLists.txt b/quanta/parsers/dtd/CMakeLists.txt index 405a4f5e..5d767f5e 100644 --- a/quanta/parsers/dtd/CMakeLists.txt +++ b/quanta/parsers/dtd/CMakeLists.txt @@ -20,6 +20,9 @@ include_directories( ${CMAKE_SOURCE_DIR}/quanta/parsers ${CMAKE_SOURCE_DIR}/quanta/utility ${CMAKE_SOURCE_DIR}/quanta/dialogs +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ${LIBXML_INCLUDE_DIRS} |