summaryrefslogtreecommitdiffstats
path: root/src/tools/qdbusxml2cpp
diff options
context:
space:
mode:
authorLeander Beernaert <leander.beernaert@qt.io>2020-04-27 15:04:57 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-06-02 22:42:15 +0200
commit5a779a4ad350accadc4337d332eedb29ba1cc26b (patch)
tree50263a99b188539a28aaf733a07bb0072eab8fa8 /src/tools/qdbusxml2cpp
parent47c6466d0acc6d8d733b4fdbaf980a60bbfc93ef (diff)
CMake: Make it possible to build tools when cross-compiling
This patch allows tools to be built for the target platform when the QT_BUILD_TOOLS_WHEN_CROSSCOMPILING parameter is set at configuration time. To avoid naming conflicts, the target tools are suffixed with "_native". The qt_get_tool_target_name() function can be used to get the tool name for both scenarios (cross and non-cross compilation). Extend pro2cmake to refer to the right target name for tools. The relevant write_XXX functions have a new target_ref parameter that will be "${target_name}" for tools and literally the target name for everything else. Fixes: QTBUG-81901 Change-Id: If4efbc1fae07a4a3a044dd09c9c06be6d517825e Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src/tools/qdbusxml2cpp')
-rw-r--r--src/tools/qdbusxml2cpp/.prev_CMakeLists.txt7
-rw-r--r--src/tools/qdbusxml2cpp/CMakeLists.txt3
2 files changed, 6 insertions, 4 deletions
diff --git a/src/tools/qdbusxml2cpp/.prev_CMakeLists.txt b/src/tools/qdbusxml2cpp/.prev_CMakeLists.txt
index 28a36410d9..603c21ac1e 100644
--- a/src/tools/qdbusxml2cpp/.prev_CMakeLists.txt
+++ b/src/tools/qdbusxml2cpp/.prev_CMakeLists.txt
@@ -4,7 +4,8 @@
## qdbusxml2cpp Tool:
#####################################################################
-qt_add_tool(qdbusxml2cpp
+qt_get_tool_target_name(target_name qdbusxml2cpp)
+qt_add_tool(${target_name}
TARGET_DESCRIPTION "Qt D-Bus XML to C++ Compiler"
SOURCES
qdbusxml2cpp.cpp
@@ -22,12 +23,12 @@ qt_add_tool(qdbusxml2cpp
## Scopes:
#####################################################################
-qt_extend_target(qdbusxml2cpp CONDITION NOT force_bootstrap
+qt_extend_target(${target_name} CONDITION NOT force_bootstrap
PUBLIC_LIBRARIES
Qt::DBusPrivate
)
-qt_extend_target(qdbusxml2cpp CONDITION force_bootstrap
+qt_extend_target(${target_name} CONDITION force_bootstrap
PUBLIC_LIBRARIES
bootstrap_dbusPrivate
)
diff --git a/src/tools/qdbusxml2cpp/CMakeLists.txt b/src/tools/qdbusxml2cpp/CMakeLists.txt
index 6380871819..5b58975afe 100644
--- a/src/tools/qdbusxml2cpp/CMakeLists.txt
+++ b/src/tools/qdbusxml2cpp/CMakeLists.txt
@@ -4,7 +4,8 @@
## qdbusxml2cpp Tool:
#####################################################################
-qt_add_tool(qdbusxml2cpp
+qt_get_tool_target_name(target_name qdbusxml2cpp)
+qt_add_tool(${target_name}
TARGET_DESCRIPTION "Qt D-Bus XML to C++ Compiler"
TOOLS_TARGET DBus # special case
SOURCES