diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2018-12-06 17:19:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-12-07 12:56:46 (GMT) |
commit | 187481d4d988f45e05f2f7a6e89df89cd64ecfe9 (patch) | |
tree | 8a310c65470b7994d460ea4a5b6f1e5a60adbf19 /Tests | |
parent | 62942969062fcc9f24ca057b6983532a973cfad6 (diff) | |
download | CMake-187481d4d988f45e05f2f7a6e89df89cd64ecfe9.zip CMake-187481d4d988f45e05f2f7a6e89df89cd64ecfe9.tar.gz CMake-187481d4d988f45e05f2f7a6e89df89cd64ecfe9.tar.bz2 |
Autogen: Revert passing compiler implicit includes to moc
Passing an incomplete list of compiler include directories causes
a regression in the KIO project (and probably others). We need to
disable it until the complete list is available (see #16291).
Fixes: #18669
Issue: #18041
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/QtAutogen/CommonTests.cmake | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Tests/QtAutogen/CommonTests.cmake b/Tests/QtAutogen/CommonTests.cmake index 01ed7e9..ef11ddf 100644 --- a/Tests/QtAutogen/CommonTests.cmake +++ b/Tests/QtAutogen/CommonTests.cmake @@ -23,9 +23,10 @@ endif() if(QT_TEST_ALLOW_QT_MACROS) ADD_AUTOGEN_TEST(MocCMP0071) endif() -if(QT_TEST_VERSION GREATER 4) - ADD_AUTOGEN_TEST(MocOsMacros) -endif() +# Disabled for issue #18669 +#if(QT_TEST_VERSION GREATER 4) +# ADD_AUTOGEN_TEST(MocOsMacros) +#endif() ADD_AUTOGEN_TEST(UicInclude uicInclude) ADD_AUTOGEN_TEST(UicInterface QtAutoUicInterface) ADD_AUTOGEN_TEST(ObjectLibrary someProgram) |