mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-19 15:58:56 +00:00
AK: Propagate delayload linker option for dbghelp.dll
When building a static liblagom-ak.a, the delayload link option gets dropped on the floor if it's a PRIVATE link option. Use an interface one instead. This fixes the TestDelayLoadWindows unit test in static windows builds.
This commit is contained in:
parent
5783caf68e
commit
ca293af184
Notes:
github-actions[bot]
2025-06-22 19:34:29 +00:00
Author: https://github.com/ADKaster
Commit: ca293af184
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5164
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ if (WIN32)
|
|||
target_link_libraries(AK PRIVATE clang_rt.builtins-x86_64.lib)
|
||||
target_link_libraries(AK PRIVATE Bcrypt.lib)
|
||||
target_link_libraries(AK PRIVATE delayimp.lib)
|
||||
target_link_options(AK PRIVATE /DELAYLOAD:dbghelp.dll)
|
||||
target_link_options(AK INTERFACE /DELAYLOAD:dbghelp.dll)
|
||||
elseif (APPLE)
|
||||
set(ASSERTION_HANDLER_VISIBILITY PRIVATE)
|
||||
if (NOT BUILD_SHARED_LIBS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue