Title: [141137] trunk/Tools
Revision
141137
Author
[email protected]
Date
2013-01-29 12:07:46 -0800 (Tue, 29 Jan 2013)

Log Message

[CMake] Use offical Windows CE support
https://bugs.webkit.org/show_bug.cgi?id=108061

Reviewed by Laszlo Gombos.

Recent version of CMake has added Windows CE support, but uses a
slightly different interface than the patched version used before.
Change the command line parameters to use the offical CMake binaries.

* Scripts/webkitdirs.pm:
(cmakeBasedPortArguments):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (141136 => 141137)


--- trunk/Tools/ChangeLog	2013-01-29 20:06:19 UTC (rev 141136)
+++ trunk/Tools/ChangeLog	2013-01-29 20:07:46 UTC (rev 141137)
@@ -1,3 +1,17 @@
+2013-01-29  Patrick Gansterer  <[email protected]>
+
+        [CMake] Use offical Windows CE support
+        https://bugs.webkit.org/show_bug.cgi?id=108061
+
+        Reviewed by Laszlo Gombos.
+
+        Recent version of CMake has added Windows CE support, but uses a
+        slightly different interface than the patched version used before.
+        Change the command line parameters to use the offical CMake binaries.
+
+        * Scripts/webkitdirs.pm:
+        (cmakeBasedPortArguments):
+
 2013-01-29  Alan Cutter  <[email protected]>
 
         QueueStatusServer needs pages to display historical queue data

Modified: trunk/Tools/Scripts/webkitdirs.pm (141136 => 141137)


--- trunk/Tools/Scripts/webkitdirs.pm	2013-01-29 20:06:19 UTC (rev 141136)
+++ trunk/Tools/Scripts/webkitdirs.pm	2013-01-29 20:07:46 UTC (rev 141137)
@@ -2230,7 +2230,7 @@
 sub cmakeBasedPortArguments()
 {
     return blackberryCMakeArguments() if isBlackBerry();
-    return ('-DCMAKE_WINCE_SDK="STANDARDSDK_500 (ARMV4I)"') if isWinCE();
+    return ('-G "Visual Studio 8 2005 STANDARDSDK_500 (ARMV4I)"') if isWinCE();
     return ();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to