aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2021-03-18 11:33:16 +0100
committerDominik Holland <dominik.holland@qt.io>2021-03-26 10:02:59 +0000
commit5e554226d00839011f6d131f75955d939f01a0b4 (patch)
treef430a6d9ee823ff626e621817b2d16fc3bcb536c
parentf456ad68a5a7c1a148b24b8e6a04ff414b02941f (diff)
cmake: Report a warning instead of an error if ivigenerator is not available
This is just a temporary workaround for the cmake port. Change-Id: Idb83c8fc4bf4877b8f297bb2f1d0690e217cc3d7 Reviewed-by: Robert Griebl <robert.griebl@qt.io>
-rw-r--r--src/ivicore/configure.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ivicore/configure.cmake b/src/ivicore/configure.cmake
index 3295315..3b68db0 100644
--- a/src/ivicore/configure.cmake
+++ b/src/ivicore/configure.cmake
@@ -71,7 +71,7 @@ qt_configure_add_summary_entry(
CONDITION NOT QT_FEATURE_ivicore
)
qt_configure_add_report_entry(
- TYPE ERROR
+ TYPE WARNING
MESSAGE "Cannot build the IVI Generator because its dependencies are not satisfied. The IVI Generator provides tooling to generate source code out of IDL files. Make sure python3 and its 'virtualenv' packages are installed. E.g. by running apt-get install python3 python3-virtualenv And make sure the qface submodule is initialized or the correct qface version is installed on your system. E.g. by running the following command: git submodule init && git submodule update"
CONDITION QT_FEATURE_ivicore AND NOT QT_FEATURE_ivigenerator AND ( NOT INPUT_ivigenerator STREQUAL 'no' )
)