Skip to content

Commit 7968b41

Browse files
author
Michal Klocek
committed
Do not run cmake test on WoA cross-compile
On coin for WoA we have hackish setup to reduce integration time where host tools are deliver by mingw, build is done as cross build and tests run natively on WoA, meaning tooling can not execute natively. Task-number: COIN-1211 Change-Id: Iaa0605e59750b1076fc8c50b7b11e00569c4a42a Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
1 parent bd736f3 commit 7968b41

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/auto/CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Copyright (C) 2022 The Qt Company Ltd.
22
# SPDX-License-Identifier: BSD-3-Clause
33

4-
add_subdirectory(cmake)
4+
if(NOT (WIN32 AND CMAKE_CROSSCOMPILING))
5+
add_subdirectory(cmake)
6+
endif()
57
if(QT_FEATURE_process AND NOT CMAKE_CROSSCOMPILING)
68
add_subdirectory(linguist)
79
add_subdirectory(qtattributionsscanner)

0 commit comments

Comments
 (0)