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 03:34:03 +0100 |
commit | f4edc50e4756b2289254ee308223faed9be6a2c7 (patch) | |
tree | 97b18efe1ebb2b853db965b956a11d25d6c49ed8 /quanta/components | |
parent | 70defe5e6d9498c5c6011eee50c4dc506abebd61 (diff) | |
download | tdewebdev-f4edc50e4756b2289254ee308223faed9be6a2c7.tar.gz tdewebdev-f4edc50e4756b2289254ee308223faed9be6a2c7.zip |
Fix FTBFS with CMake build:
+ 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>
Diffstat (limited to 'quanta/components')
-rw-r--r-- | quanta/components/csseditor/CMakeLists.txt | 3 | ||||
-rw-r--r-- | quanta/components/cvsservice/CMakeLists.txt | 3 | ||||
-rw-r--r-- | quanta/components/debugger/CMakeLists.txt | 3 | ||||
-rw-r--r-- | quanta/components/debugger/dbgp/CMakeLists.txt | 3 | ||||
-rw-r--r-- | quanta/components/debugger/gubed/CMakeLists.txt | 3 | ||||
-rw-r--r-- | quanta/components/debugger/interfaces/CMakeLists.txt | 3 | ||||
-rw-r--r-- | quanta/components/framewizard/CMakeLists.txt | 3 | ||||
-rw-r--r-- | quanta/components/tableeditor/CMakeLists.txt | 3 |
8 files changed, 24 insertions, 0 deletions
diff --git a/quanta/components/csseditor/CMakeLists.txt b/quanta/components/csseditor/CMakeLists.txt index 83e9068c..82113e59 100644 --- a/quanta/components/csseditor/CMakeLists.txt +++ b/quanta/components/csseditor/CMakeLists.txt @@ -18,6 +18,9 @@ include_directories( ${CMAKE_SOURCE_DIR}/quanta/project ${CMAKE_SOURCE_DIR}/quanta/parsers ${CMAKE_SOURCE_DIR}/quanta/utility +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/quanta/components/cvsservice/CMakeLists.txt b/quanta/components/cvsservice/CMakeLists.txt index 7f2010ae..7f0a83c8 100644 --- a/quanta/components/cvsservice/CMakeLists.txt +++ b/quanta/components/cvsservice/CMakeLists.txt @@ -5,6 +5,9 @@ include_directories( ${CMAKE_SOURCE_DIR}/quanta/project ${CMAKE_SOURCE_DIR}/quanta/parsers ${CMAKE_SOURCE_DIR}/quanta/utility +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/quanta/components/debugger/CMakeLists.txt b/quanta/components/debugger/CMakeLists.txt index 6a9e7609..58d8c1f2 100644 --- a/quanta/components/debugger/CMakeLists.txt +++ b/quanta/components/debugger/CMakeLists.txt @@ -24,6 +24,9 @@ include_directories( ${CMAKE_SOURCE_DIR}/quanta/utility ${CMAKE_SOURCE_DIR}/quanta/messages ${CMAKE_SOURCE_DIR}/quanta/parts/preview +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/quanta/components/debugger/dbgp/CMakeLists.txt b/quanta/components/debugger/dbgp/CMakeLists.txt index 0652c64d..e56d828b 100644 --- a/quanta/components/debugger/dbgp/CMakeLists.txt +++ b/quanta/components/debugger/dbgp/CMakeLists.txt @@ -13,6 +13,9 @@ include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/quanta/components/debugger ${CMAKE_SOURCE_DIR}/quanta/components/debugger/interfaces +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/quanta/components/debugger/gubed/CMakeLists.txt b/quanta/components/debugger/gubed/CMakeLists.txt index b528b30a..a5cfe95d 100644 --- a/quanta/components/debugger/gubed/CMakeLists.txt +++ b/quanta/components/debugger/gubed/CMakeLists.txt @@ -13,6 +13,9 @@ include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/quanta/components/debugger ${CMAKE_SOURCE_DIR}/quanta/components/debugger/interfaces +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/quanta/components/debugger/interfaces/CMakeLists.txt b/quanta/components/debugger/interfaces/CMakeLists.txt index 9778dbe0..72e14676 100644 --- a/quanta/components/debugger/interfaces/CMakeLists.txt +++ b/quanta/components/debugger/interfaces/CMakeLists.txt @@ -12,6 +12,9 @@ include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/quanta/components/debugger +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/quanta/components/framewizard/CMakeLists.txt b/quanta/components/framewizard/CMakeLists.txt index 0a1f83a1..c745467b 100644 --- a/quanta/components/framewizard/CMakeLists.txt +++ b/quanta/components/framewizard/CMakeLists.txt @@ -14,6 +14,9 @@ include_directories( ${CMAKE_SOURCE_DIR}/lib ${CMAKE_SOURCE_DIR}/quanta/project ${CMAKE_SOURCE_DIR}/quanta/components/framewizard +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/quanta/components/tableeditor/CMakeLists.txt b/quanta/components/tableeditor/CMakeLists.txt index e6a7d8a9..699d1aa6 100644 --- a/quanta/components/tableeditor/CMakeLists.txt +++ b/quanta/components/tableeditor/CMakeLists.txt @@ -15,6 +15,9 @@ include_directories( ${CMAKE_SOURCE_DIR}/quanta/parsers ${CMAKE_SOURCE_DIR}/quanta/utility ${CMAKE_SOURCE_DIR}/quanta/dialogs/tagdialogs +) + +include_directories( SYSTEM ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) |