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
parent 4686989582
commit ac40197047

View file

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