blob: 5e21f57e95be341b0c8d16dcd9ca613fd9bed38a (
plain)
1 From f51554bf104ab0491370f66631fe46143a23d5c2 Mon Sep 17 00:00:00 2001
2 From: Konstantin Tokarev <annulen@yandex.ru>
3 Date: Sat, 7 Oct 2017 17:38:32 +0300
4 Subject: [PATCH] [cmake] Fix build with CMake 3.10: -frtti was enabled for
5 wrong file path
6
7 Change-Id: I65d4f491f21c17f6d99a14259988d2ddb0d67105
8 ---
9 Source/WebKit/PlatformQt.cmake | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/Source/WebKit/PlatformQt.cmake b/Source/WebKit/PlatformQt.cmake
13 index 61433257a767..edfa57e97ac1 100644
14 --- a/Source/WebKit/PlatformQt.cmake
15 +++ b/Source/WebKit/PlatformQt.cmake
16 @@ -795,6 +795,7 @@ if (COMPILER_IS_GCC_OR_CLANG)
17 set_source_files_properties(
18 qt/Api/qwebdatabase.cpp
19 qt/Api/qwebelement.cpp
20 + qt/Api/qwebfullscreenrequest.cpp
21 qt/Api/qwebhistory.cpp
22 qt/Api/qwebhistoryinterface.cpp
23 qt/Api/qwebpluginfactory.cpp
24 @@ -804,7 +805,6 @@ if (COMPILER_IS_GCC_OR_CLANG)
25
26 qt/WidgetApi/qgraphicswebview.cpp
27 qt/WidgetApi/qwebframe.cpp
28 - qt/WidgetApi/qwebfullscreenrequest.cpp
29 qt/WidgetApi/qwebinspector.cpp
30 qt/WidgetApi/qwebpage.cpp
31 qt/WidgetApi/qwebview.cpp
|