Changes between Version 85 and Version 86 of EFLWebKit


Ignore:
Timestamp:
Dec 1, 2012 2:34:49 PM (11 years ago)
Author:
laszlo.gombos@gmail.com
Comment:

fix the spelling for cmakeargs - see https://bugs.webkit.org/show_bug.cgi?id=103814

Legend:

Unmodified
Added
Removed
Modified
  • EFLWebKit

    v85 v86  
    129129}}}
    130130
    131 It is also possible to pass extra arguments directly to CMake by using the `--cmakearg` option.
     131It is also possible to pass extra arguments directly to CMake by using the `--cmakeargs` option.
    132132
    133133{{{
    134 WebKit$ ./Tools/Scripts/build-webkit --efl --cmakearg="-DCMAKE_CXX_COMPILER=/opt/c++ -DCMAKE_PREFIX_PATH=/usr/local -DCMAKE_VERBOSE_MAKEFILE=TRUE"
     134WebKit$ ./Tools/Scripts/build-webkit --efl --cmakeargs="-DCMAKE_CXX_COMPILER=/opt/c++ -DCMAKE_PREFIX_PATH=/usr/local -DCMAKE_VERBOSE_MAKEFILE=TRUE"
    135135}}}
    136136
     
    148148By default, internal !WebKit libraries such  as !JavaScriptCore and !WebCore are built as static libraries and linked into the libewebkit shared library, which is the actual port library. It is also possible to build all libraries as shared libraries, which reduces link time and memory consumption but has a slight performance hit during application startup (obviously, all the shared libraries then need to be distributed and installed).
    149149
    150 In order to enable the SHARED_CORE option, pass `--cmakearg="-DSHARED_CORE=ON" to the `built-webkit` script.
     150In order to enable the SHARED_CORE option, pass `--cmakeargs="-DSHARED_CORE=ON" to the `built-webkit` script.
    151151
    152152{{{
    153 WebKit$ ./Tools/Scripts/build-webkit --efl --cmakearg="-DSHARED_CORE=ON"
     153WebKit$ ./Tools/Scripts/build-webkit --efl --cmakeargs="-DSHARED_CORE=ON"
    154154}}}
    155155