Changeset 223128 in webkit


Ignore:
Timestamp:
Oct 10, 2017 4:27:40 AM (7 years ago)
Author:
Adrian Perez de Castro
Message:

[WPE][CMake] The “install” target should install all public API headers
https://bugs.webkit.org/show_bug.cgi?id=176475

Reviewed by Žan Doberšek.

Install the WPE port GLib-based API headers. The deprecated C API is still available,
but disabled by default behind the "EXPORT_DEPRECATED_WEBKIT2_C_API" CMake option.

  • PlatformWPE.cmake: Always install "wpe-webkit.pc" and the GLib C API for WPE.
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r223083 r223128  
     12017-10-10  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [WPE][CMake] The “install” target should install all public API headers
     4        https://bugs.webkit.org/show_bug.cgi?id=176475
     5
     6        Reviewed by Žan Doberšek.
     7
     8        Install the WPE port GLib-based API headers. The deprecated C API is still available,
     9        but disabled by default behind the "EXPORT_DEPRECATED_WEBKIT2_C_API" CMake option.
     10
     11        * PlatformWPE.cmake: Always install "wpe-webkit.pc" and the GLib C API for WPE.
     12
    1132017-10-09  Jeremy Jones  <jeremyj@apple.com>
    214
  • trunk/Source/WebKit/PlatformWPE.cmake

    r222385 r223128  
    630630        COMPONENT "Development"
    631631    )
    632 
    633     install(FILES ${CMAKE_BINARY_DIR}/wpe-webkit.pc
    634         DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
    635         COMPONENT "Development"
    636     )
    637632endif ()
     633
     634install(FILES "${CMAKE_BINARY_DIR}/wpe-webkit.pc"
     635    DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
     636    COMPONENT "Development"
     637)
     638
     639install(FILES ${WPE_API_INSTALLED_HEADERS}
     640    DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/wpe-${WPE_API_VERSION}/WPE/wpe"
     641    COMPONENT "Development"
     642)
Note: See TracChangeset for help on using the changeset viewer.