Changes between Version 6 and Version 7 of AddingFiles


Ignore:
Timestamp:
Apr 4, 2014 11:59:23 PM (10 years ago)
Author:
brrian@me.com
Comment:

How to add new WebCore directory containing headers used in Win WebKit

Legend:

Unmodified
Added
Removed
Modified
  • AddingFiles

    v6 v7  
    3030=== Adding a directory
    3131
    32 * Make a stub in `Project.vcxproj.filters` at the top.
     32 * Make a stub in `Project.vcxproj.filters` at the top.
     33 * If the directory has headers used outside the current project (i.e., a WebCore directory's headers are used by WebKit), then you must tell the build system to copy the directory's headers to the shared include dir. This is configured in `Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd`.
    3334
    3435=== Adding a file
     
    5051 * If the directory contains header or implementation files, add it to `Project_INCLUDE_DIRECTORIES`.
    5152 * If the directory contains IDL files, add it to `Project_IDL_INCLUDES`.
    52  * If the directory has headers used outside the current project (i.e., a WebCore directory's headers are used by WebKit2), then you must add the referenced directory to referencing project's CMakeLists.txt (i.e., WebKit2).
     53 * If the directory has headers used outside the current project (i.e., a WebCore directory's headers are used by WebKit2), then you must add the referenced directory to referencing project's `CMakeLists.txt` (i.e., WebKit2).
    5354
    5455=== Adding a file