mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 06:04:57 +00:00
16 lines
238 B
Text
16 lines
238 B
Text
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" ]
|
|
}
|