Changes between Version 4 and Version 5 of WinCE
- Timestamp:
- Aug 23, 2010 6:06:03 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WinCE
v4 v5 17 17 {{{ 18 18 git clone git://gitorious.org/+wincewebkit-developers/webkit/wincewebkit.git 19 git checkout wincegdi 19 20 }}} 20 21 … … 40 41 === Build CMake with WinCE support === 41 42 42 Because the offical CMake has not support for Windows CE at the moment, we need to use the CMake version from AlexeyS.43 Because the offical CMake has not support for Windows CE at the moment, we need to use a special CMake version. 43 44 44 45 {{{ 45 git clone git://git hub.com/AlexeyS/cmake.git46 git checkout all46 git clone git://gitorious.org/~paroga/cmake/parogas-cmake.git 47 git checkout wince 47 48 }}} 48 49 … … 58 59 mkdir WebKitBuild 59 60 cd WebKitBuild 60 cmake -G "Visual Studio 8 2005 for Windows CE" -DPORT:STRING=WinCE -DCMAKE_WINDOWS_CE_PLATFORM:STRING="STANDARDSDK_500 (ARMV4I)"C:\WebKitSource61 cmake -G "Visual Studio 8 2005" -DCMAKE_WINCE_SDK:STRING="STANDARDSDK_500 (ARMV4I)" -DPORT:STRING=WinCE C:\WebKitSource 61 62 }}} 62 63 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.64 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}}} 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. 64 65 65 66 Now you should be able to open the solution and build it.