blob: 4f9ea9044713c8ce4af00872724894e7cf231475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# HACK ALERT!
# To avoid a circular dependency chain with LibCrypt --> LibCrypto --> LibCore --> LibCrypt
# We include the SHA2 implementation from LibCrypto here manually
add_library(LibCryptSHA2 OBJECT ../LibCrypto/Hash/SHA2.cpp)
set_target_properties(LibCryptSHA2 PROPERTIES CXX_VISIBILITY_PRESET hidden)
set_target_properties(LibCryptSHA2 PROPERTIES VISIBILITY_INLINES_HIDDEN ON)
set(SOURCES
crypt.cpp
)
serenity_libc(LibCrypt crypt)
target_link_libraries(LibCrypt LibC LibCryptSHA2)
|