1
0
Fork 0
firefox/toolkit/crashreporter/mozwer-rust/moz.build
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
401 B
Text

RustLibrary("mozwer_s")
OS_LIBS += [
"advapi32",
"dbghelp",
"kernel32",
"ntdll",
"ole32",
"shell32",
"user32",
"userenv",
"ws2_32",
]
# `std` uses `raw-dylib` to link this dll, but that doesn't work properly on x86 MinGW, so we explicitly
# have to link it.
if CONFIG["OS_ARCH"] == "WINNT" and CONFIG["CC_TYPE"] != "clang-cl":
OS_LIBS += ["bcryptprimitives"]