Changeset 135225 in webkit


Ignore:
Timestamp:
Nov 19, 2012, 6:06:35 PM (13 years ago)
Author:
Patrick Gansterer
Message:

[CMake] Create JavaScriptCore ForwardingHeaders
https://bugs.webkit.org/show_bug.cgi?id=92665

Reviewed by Brent Fulgham.

When using CMake to build the Windows port, we need
to generate the forwarding headers with it too.

  • CMakeLists.txt:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/CMakeLists.txt

    r134793 r135225  
    394394ENDFOREACH ()
    395395
     396SET (JavaScriptCore_FORWARDING_HEADERS_DIRECTORIES
     397    assembler
     398    bytecode
     399    collector/handles
     400    debugger
     401    heap
     402    interpreter
     403    jit
     404    llint
     405    parser
     406    profiler
     407    runtime
     408    yarr
     409)
     410
     411SET (JavaScriptCore_FORWARDING_HEADERS_FILES
     412    API/APICast.h
     413    API/APIShims.h
     414    API/JavaScript.h
     415    API/JSBase.h
     416    API/JSContextRef.h
     417    API/JSContextRefPrivate.h
     418    API/JSObjectRef.h
     419    API/JSObjectRefPrivate.h
     420    API/JSStringRef.h
     421    API/JSStringRefCF.h
     422    API/JSStringRefBSTR.h
     423    API/JSValueRef.h
     424    API/JavaScriptCore.h
     425    API/JSRetainPtr.h
     426    API/JSWeakObjectMapRefInternal.h
     427    API/JSWeakObjectMapRefPrivate.h
     428    API/JSRetainPtr.h
     429    API/OpaqueJSString.h
     430    API/WebKitAvailability.h
     431)
     432
    396433
    397434# GENERATOR 1-B: particular LUT creator (for 1 file only)
     
    432469WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS()
    433470
     471WEBKIT_CREATE_FORWARDING_HEADERS(JavaScriptCore DIRECTORIES ${JavaScriptCore_FORWARDING_HEADERS_DIRECTORIES} FILES ${JavaScriptCore_FORWARDING_HEADERS_FILES})
     472
    434473
    435474ADD_SUBDIRECTORY(shell)
  • trunk/Source/JavaScriptCore/ChangeLog

    r135159 r135225  
     12012-11-19  Patrick Gansterer  <paroga@webkit.org>
     2
     3        [CMake] Create JavaScriptCore ForwardingHeaders
     4        https://bugs.webkit.org/show_bug.cgi?id=92665
     5
     6        Reviewed by Brent Fulgham.
     7
     8        When using CMake to build the Windows port, we need
     9        to generate the forwarding headers with it too.
     10
     11        * CMakeLists.txt:
     12
    1132012-11-19  Kihong Kwon  <kihong.kwon@samsung.com>
    214
Note: See TracChangeset for help on using the changeset viewer.