1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-05 23:17:34 +00:00
serenity/Meta/gn/build/libs/crypt/BUILD.gn
Andrew Kaster 4bfb146181 Meta: Add the start of a gn build based on the LLVM gn build
"based on" in this context means "largely copied from"
2023-07-09 16:22:58 -06:00

10 lines
172 B
Text

config("crypt_config") {
visibility = [ ":crypt" ]
libs = [ "crypt" ]
}
group("crypt") {
if (current_os == "linux") {
public_configs = [ ":crypt_config" ]
}
}