mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 13:05:07 +00:00

5c7e5cc738
a8f0fa5dd4
0d417cd604
5b87d26027
(and other friends from the JIT PR)f915aa70cd
19 lines
473 B
Text
19 lines
473 B
Text
executable("ImageDecoder") {
|
|
configs += [ "//Ladybird:ladybird_config" ]
|
|
include_dirs = [
|
|
"//Userland/Libraries",
|
|
"//Userland/Services",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibGfx",
|
|
"//Userland/Libraries/LibIPC",
|
|
"//Userland/Libraries/LibImageDecoderClient",
|
|
"//Userland/Libraries/LibMain",
|
|
]
|
|
sources = [
|
|
"//Userland/Services/ImageDecoder/ConnectionFromClient.cpp",
|
|
"main.cpp",
|
|
]
|
|
}
|