Changes between Version 4 and Version 5 of WinCE


Ignore:
Timestamp:
Aug 23, 2010 6:06:03 AM (14 years ago)
Author:
paroga@paroga.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WinCE

    v4 v5  
    1717{{{
    1818git clone git://gitorious.org/+wincewebkit-developers/webkit/wincewebkit.git
     19git checkout wincegdi
    1920}}}
    2021
     
    4041=== Build CMake with WinCE support ===
    4142
    42 Because the offical CMake has not support for Windows CE at the moment, we need to use the CMake version from AlexeyS.
     43Because the offical CMake has not support for Windows CE at the moment, we need to use a special CMake version.
    4344
    4445{{{
    45 git clone git://github.com/AlexeyS/cmake.git
    46 git checkout all
     46git clone git://gitorious.org/~paroga/cmake/parogas-cmake.git
     47git checkout wince
    4748}}}
    4849
     
    5859mkdir WebKitBuild
    5960cd WebKitBuild
    60 cmake -G "Visual Studio 8 2005 for Windows CE" -DPORT:STRING=WinCE -DCMAKE_WINDOWS_CE_PLATFORM:STRING="STANDARDSDK_500 (ARMV4I)" C:\WebKitSource
     61cmake -G "Visual Studio 8 2005" -DCMAKE_WINCE_SDK:STRING="STANDARDSDK_500 (ARMV4I)" -DPORT:STRING=WinCE C:\WebKitSource
    6162}}}
    6263
    63 This will generate a WebKit.sln in the WebKitBuild directory from the sourcecode in C:\WebKitSource. You can change the generator to {{{Visual Studio 9 2008 for Windows CE}}} if you want to generate Visual Studio 2008 projects. It is also possible to select an other Windwos CE SDK when you replace the {{{STANDARDSDK_500 (ARMV4I)}}} with the name of SDK you want to use.
     64This will generate a WebKit.sln in the WebKitBuild directory from the sourcecode in C:\WebKitSource. You can change the generator to {{{Visual Studio 9 2008}}} if you want to generate Visual Studio 2008 projects. It is also possible to select an other Windwos CE SDK when you replace the {{{STANDARDSDK_500 (ARMV4I)}}} with the name of SDK you want to use.
    6465
    6566Now you should be able to open the solution and build it.