LibCrypt: Start installing headers again

This was accidentally broken in
ac40197047, after which we started
installing headers into a `LibCrypt` subdirectory instead.

`serenity_install_headers("")` is really the only thing that we need
from `serenity_libc`, so just replicate that manually.
This commit is contained in:
Tim Schumacher 2023-03-19 23:21:47 +01:00 committed by Andreas Kling
parent 5708a47157
commit cda4034b46

View file

@ -11,4 +11,5 @@ set(SOURCES
)
serenity_lib(LibCrypt crypt)
serenity_install_headers("")
target_link_libraries(LibCrypt PRIVATE LibCryptSHA2)