1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:17:44 +00:00

Meta: Port recent changes to the GN build

d125d16287
60c3a1a77b
4364a28d3d
271c9d1ae9
This commit is contained in:
Timothy Flynn 2024-01-21 19:46:16 -05:00 committed by Tim Flynn
parent 1294cfb55c
commit b81a6cfe1d
5 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,19 @@
shared_library("LibRIFF") {
output_name = "riff"
include_dirs = [ "//Userland/Libraries" ]
sources = [
"ChunkID.h",
"Decoding.cpp",
"Details.cpp",
"Details.h",
"IFF.h",
"RIFF.h",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
]
}