diff options
author | David Faure <faure@kde.org> | 2020-12-07 18:18:02 +0100 |
---|---|---|
committer | David Faure <faure@kde.org> | 2020-12-07 18:18:02 +0100 |
commit | 09065dc00406f7a47071b0e97c200c5b6dfb1b3e (patch) | |
tree | 9e75d44c66ef070566fe463e6415ec0be1ec6245 | |
parent | 51c13754b38be57cf51ed2c4592bb89f0648dc61 (diff) | |
download | extra-cmake-modules-09065dc00406f7a47071b0e97c200c5b6dfb1b3e.tar.gz extra-cmake-modules-09065dc00406f7a47071b0e97c200c5b6dfb1b3e.tar.bz2 |
GIT_SILENT remove debugging for Windows CI
-rw-r--r-- | modules/ECMAddTests.cmake | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/ECMAddTests.cmake b/modules/ECMAddTests.cmake index 0136bb64..7e518212 100644 --- a/modules/ECMAddTests.cmake +++ b/modules/ECMAddTests.cmake @@ -102,10 +102,6 @@ function(ecm_add_test) endif() set(_plugin_path "$ENV{QT_PLUGIN_PATH}") set_property(TEST ${_testname} PROPERTY ENVIRONMENT "QT_PLUGIN_PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY}${PATHSEP}${_plugin_path}") - if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") - get_property(_debug_env TEST ${_testname} PROPERTY ENVIRONMENT) - message("debugging: _plugin_path=${_plugin_path} property=${_debug_env}") - endif() endif() if (ARG_TARGET_NAME_VAR) set(${ARG_TARGET_NAME_VAR} "${_targetname}" PARENT_SCOPE) |