Changeset 241866 in webkit


Ignore:
Timestamp:
Feb 21, 2019 9:08:07 AM (5 years ago)
Author:
Adrian Perez de Castro
Message:

[WPE] Do not hardcode WPEBackend-fdo library name for linking tests
https://bugs.webkit.org/show_bug.cgi?id=194901

Unreviewed build fix.

.:

  • Source/cmake/FindWPEBackend-fdo.cmake: Use WPEBACKEND_FDO as prefix

for the output variables instead of WPEBackend-fdo, for consistency
with other usages of of find_package_handle_standard_args().

Tools:

  • TestWebKitAPI/PlatformWPE.cmake: Set TestWebKitAPIBase to be linked

against the detected ${WPEBACKEND_FDO_LIBRARIES} instead of hardcoding
WPEBackend-fdo-0.1 as library name.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r241283 r241866  
     12019-02-21  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [WPE] Do not hardcode WPEBackend-fdo library name for linking tests
     4        https://bugs.webkit.org/show_bug.cgi?id=194901
     5
     6        Unreviewed build fix.
     7
     8        * Source/cmake/FindWPEBackend-fdo.cmake: Use WPEBACKEND_FDO as prefix
     9        for the output variables instead of WPEBackend-fdo, for consistency
     10        with other usages of of find_package_handle_standard_args().
     11
    1122019-02-11  Adrian Perez de Castro  <aperez@igalia.com>
    213
  • trunk/Source/cmake/FindWPEBackend-fdo.cmake

    r231042 r241866  
    4545
    4646include(FindPackageHandleStandardArgs)
    47 find_package_handle_standard_args(WPEBackend-fdo REQUIRED_VARS WPEBACKEND_FDO_INCLUDE_DIRS WPEBACKEND_FDO_LIBRARIES)
     47find_package_handle_standard_args(WPEBACKEND_FDO REQUIRED_VARS WPEBACKEND_FDO_INCLUDE_DIRS WPEBACKEND_FDO_LIBRARIES)
  • trunk/Tools/ChangeLog

    r241863 r241866  
     12019-02-21  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [WPE] Do not hardcode WPEBackend-fdo library name for linking tests
     4        https://bugs.webkit.org/show_bug.cgi?id=194901
     5
     6        Unreviewed build fix.
     7
     8        * TestWebKitAPI/PlatformWPE.cmake: Set TestWebKitAPIBase to be linked
     9        against the detected ${WPEBACKEND_FDO_LIBRARIES} instead of hardcoding
     10        WPEBackend-fdo-0.1 as library name.
     11
    1122019-02-21  Rob Buis  <rbuis@igalia.com>
    213
  • trunk/Tools/TestWebKitAPI/PlatformWPE.cmake

    r241261 r241866  
    9494
    9595# TestWebKitAPIBase
    96 list(APPEND TestWebKitAPIBase_LIBRARIES
    97     WPEBackend-fdo-0.1
    98 )
    99 find_package(WPEBackend-fdo REQUIRED)
     96list(APPEND TestWebKitAPIBase_LIBRARIES ${WPEBACKEND_FDO_LIBRARIES})
    10097list(APPEND TestWebKitAPI_LIBRARIES ${WPEBACKEND_FDO_LIBRARIES})
    10198list(APPEND TestWebKitAPIBase_SOURCES
Note: See TracChangeset for help on using the changeset viewer.