Changeset 173619 in webkit


Ignore:
Timestamp:
Sep 15, 2014 4:35:08 AM (10 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK][CMake] Build WebCore with Wayland-specific include directories, libraries
https://bugs.webkit.org/show_bug.cgi?id=136815

Reviewed by Philippe Normand.

  • PlatformGTK.cmake: Add the platform/graphics/wayland/ directory to the list of

WebCore's include directories. Add include directories of the Wayland dependency
to the list of WebCore's include directories. Same for the Wayland libraries.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r173616 r173619  
     12014-09-15  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK][CMake] Build WebCore with Wayland-specific include directories, libraries
     4        https://bugs.webkit.org/show_bug.cgi?id=136815
     5
     6        Reviewed by Philippe Normand.
     7
     8        * PlatformGTK.cmake: Add the platform/graphics/wayland/ directory to the list of
     9        WebCore's include directories. Add include directories of the Wayland dependency
     10        to the list of WebCore's include directories. Same for the Wayland libraries.
     11
    1122014-09-15  peavo@outlook.com  <peavo@outlook.com>
    213
  • trunk/Source/WebCore/PlatformGTK.cmake

    r173510 r173619  
    1515    "${WEBCORE_DIR}/platform/graphics/opengl"
    1616    "${WEBCORE_DIR}/platform/graphics/opentype"
     17    "${WEBCORE_DIR}/platform/graphics/wayland"
    1718    "${WEBCORE_DIR}/platform/linux"
    1819    "${WEBCORE_DIR}/platform/mediastream/gstreamer"
     
    434435
    435436        ${DERIVED_SOURCES_WEBCORE_DIR}/WebKitGtkWaylandClientProtocol.c
     437    )
     438
     439    list(APPEND WebCore_INCLUDE_DIRECTORIES
     440        ${WAYLAND_INCLUDE_DIRECTORIES}
     441    )
     442    list(APPEND WebCore_LIBRARIES
     443        ${WAYLAND_LIBRARIES}
    436444    )
    437445endif ()
Note: See TracChangeset for help on using the changeset viewer.