Changes between Version 6 and Version 7 of AddingFiles
- Timestamp:
- Apr 4, 2014, 11:59:23 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AddingFiles
v6 v7 30 30 === Adding a directory 31 31 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`. 33 34 34 35 === Adding a file … … 50 51 * If the directory contains header or implementation files, add it to `Project_INCLUDE_DIRECTORIES`. 51 52 * 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). 53 54 54 55 === Adding a file