LibCrypt: Define it as a normal library

LibCrypt has no need for being -nostdlib, especially since we just link
in LibC manually anyways.
This commit is contained in:
Tim Schumacher 2022-10-23 22:59:56 +02:00 committed by Linus Groh
commit ac40197047
Notes: sideshowbarker 2024-07-17 17:40:13 +09:00

View file

@ -10,5 +10,5 @@ set(SOURCES
crypt.cpp crypt.cpp
) )
serenity_libc(LibCrypt crypt) serenity_lib(LibCrypt crypt)
target_link_libraries(LibCrypt LibC LibCryptSHA2) target_link_libraries(LibCrypt LibC LibCryptSHA2)