Changeset 141137 in webkit


Ignore:
Timestamp:
Jan 29, 2013 12:07:46 PM (11 years ago)
Author:
Patrick Gansterer
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r141129 r141137  
     12013-01-29  Patrick Gansterer  <paroga@webkit.org>
     2
     3        [CMake] Use offical Windows CE support
     4        https://bugs.webkit.org/show_bug.cgi?id=108061
     5
     6        Reviewed by Laszlo Gombos.
     7
     8        Recent version of CMake has added Windows CE support, but uses a
     9        slightly different interface than the patched version used before.
     10        Change the command line parameters to use the offical CMake binaries.
     11
     12        * Scripts/webkitdirs.pm:
     13        (cmakeBasedPortArguments):
     14
    1152013-01-29  Alan Cutter  <alancutter@chromium.org>
    216
  • trunk/Tools/Scripts/webkitdirs.pm

    r140939 r141137  
    22312231{
    22322232    return blackberryCMakeArguments() if isBlackBerry();
    2233     return ('-DCMAKE_WINCE_SDK="STANDARDSDK_500 (ARMV4I)"') if isWinCE();
     2233    return ('-G "Visual Studio 8 2005 STANDARDSDK_500 (ARMV4I)"') if isWinCE();
    22342234    return ();
    22352235}
Note: See TracChangeset for help on using the changeset viewer.