32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From f51554bf104ab0491370f66631fe46143a23d5c2 Mon Sep 17 00:00:00 2001
|
|
From: Konstantin Tokarev <annulen@yandex.ru>
|
|
Date: Sat, 7 Oct 2017 17:38:32 +0300
|
|
Subject: [PATCH] [cmake] Fix build with CMake 3.10: -frtti was enabled for
|
|
wrong file path
|
|
|
|
Change-Id: I65d4f491f21c17f6d99a14259988d2ddb0d67105
|
|
---
|
|
Source/WebKit/PlatformQt.cmake | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Source/WebKit/PlatformQt.cmake b/Source/WebKit/PlatformQt.cmake
|
|
index 61433257a767..edfa57e97ac1 100644
|
|
--- a/Source/WebKit/PlatformQt.cmake
|
|
+++ b/Source/WebKit/PlatformQt.cmake
|
|
@@ -795,6 +795,7 @@ if (COMPILER_IS_GCC_OR_CLANG)
|
|
set_source_files_properties(
|
|
qt/Api/qwebdatabase.cpp
|
|
qt/Api/qwebelement.cpp
|
|
+ qt/Api/qwebfullscreenrequest.cpp
|
|
qt/Api/qwebhistory.cpp
|
|
qt/Api/qwebhistoryinterface.cpp
|
|
qt/Api/qwebpluginfactory.cpp
|
|
@@ -804,7 +805,6 @@ if (COMPILER_IS_GCC_OR_CLANG)
|
|
|
|
qt/WidgetApi/qgraphicswebview.cpp
|
|
qt/WidgetApi/qwebframe.cpp
|
|
- qt/WidgetApi/qwebfullscreenrequest.cpp
|
|
qt/WidgetApi/qwebinspector.cpp
|
|
qt/WidgetApi/qwebpage.cpp
|
|
qt/WidgetApi/qwebview.cpp
|