mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
636a6a2fb8
This adds a CPack configuration to generate a release package for js(1). Our current CMake requirement is 3.16, which doesn't have a great story for automatically installing a binary target's library dependencies. If we eventually require CMake 3.21 or above, we can remove the helper .cmake file added here in lieu of RUNTIME_DEPENDENCIES.
34 lines
1 KiB
CMake
34 lines
1 KiB
CMake
function(add_lagom_library list item)
|
|
list(FIND "${list}" "${item}" item_is_present)
|
|
|
|
if (item_is_present EQUAL -1)
|
|
set("${list}" "${${list}}" "${item}" PARENT_SCOPE)
|
|
endif()
|
|
endfunction()
|
|
|
|
function(get_linked_lagom_libraries_impl target output)
|
|
if (NOT TARGET "${target}")
|
|
return()
|
|
endif()
|
|
|
|
get_target_property(target_type "${target}" TYPE)
|
|
|
|
if ("${target_type}" STREQUAL "SHARED_LIBRARY")
|
|
add_lagom_library("${output}" "${target}")
|
|
elseif ("${target_type}" STREQUAL "INTERFACE_LIBRARY")
|
|
return()
|
|
endif()
|
|
|
|
get_target_property(target_libraries "${target}" LINK_LIBRARIES)
|
|
|
|
foreach(target_library IN LISTS target_libraries)
|
|
get_linked_lagom_libraries_impl("${target_library}" "${output}")
|
|
endforeach()
|
|
|
|
set("${output}" "${${output}}" PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
function(get_linked_lagom_libraries target output)
|
|
get_linked_lagom_libraries_impl(${target} ${output})
|
|
set("${output}" "${${output}}" PARENT_SCOPE)
|
|
endfunction()
|