Changes between Version 85 and Version 86 of EFLWebKit
- Timestamp:
- Dec 1, 2012, 2:34:49 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EFLWebKit
v85 v86 129 129 }}} 130 130 131 It is also possible to pass extra arguments directly to CMake by using the `--cmakearg ` option.131 It is also possible to pass extra arguments directly to CMake by using the `--cmakeargs` option. 132 132 133 133 {{{ 134 WebKit$ ./Tools/Scripts/build-webkit --efl --cmakearg ="-DCMAKE_CXX_COMPILER=/opt/c++ -DCMAKE_PREFIX_PATH=/usr/local -DCMAKE_VERBOSE_MAKEFILE=TRUE"134 WebKit$ ./Tools/Scripts/build-webkit --efl --cmakeargs="-DCMAKE_CXX_COMPILER=/opt/c++ -DCMAKE_PREFIX_PATH=/usr/local -DCMAKE_VERBOSE_MAKEFILE=TRUE" 135 135 }}} 136 136 … … 148 148 By 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). 149 149 150 In order to enable the SHARED_CORE option, pass `--cmakearg ="-DSHARED_CORE=ON" to the `built-webkit` script.150 In order to enable the SHARED_CORE option, pass `--cmakeargs="-DSHARED_CORE=ON" to the `built-webkit` script. 151 151 152 152 {{{ 153 WebKit$ ./Tools/Scripts/build-webkit --efl --cmakearg ="-DSHARED_CORE=ON"153 WebKit$ ./Tools/Scripts/build-webkit --efl --cmakeargs="-DSHARED_CORE=ON" 154 154 }}} 155 155