mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 12:45:06 +00:00
21 lines
455 B
Text
21 lines
455 B
Text
shared_library("LibSoftGPU") {
|
|
output_name = "softgpu"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
cflags_cc = [ "-Wno-psabi" ]
|
|
sources = [
|
|
"Clipper.cpp",
|
|
"Device.cpp",
|
|
"Image.cpp",
|
|
"PixelConverter.cpp",
|
|
"Sampler.cpp",
|
|
"Shader.cpp",
|
|
"ShaderCompiler.cpp",
|
|
"ShaderProcessor.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibGPU",
|
|
"//Userland/Libraries/LibGfx",
|
|
]
|
|
}
|