1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:47:34 +00:00

Meta: Add gn build rules for LibGL and its dependencies

This commit is contained in:
Andrew Kaster 2023-05-05 12:50:24 -06:00 committed by Andrew Kaster
parent bf02069a89
commit 13a5606cdc
6 changed files with 203 additions and 0 deletions

View file

@ -0,0 +1,21 @@
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",
]
}