mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 23:07:35 +00:00
Meta: Port 95c154d9bd
to gn build
This commit is contained in:
parent
95e2039abb
commit
3eb92a9324
1 changed files with 25 additions and 0 deletions
25
Meta/gn/secondary/Userland/Libraries/LibAccelGfx/BUILD.gn
Normal file
25
Meta/gn/secondary/Userland/Libraries/LibAccelGfx/BUILD.gn
Normal file
|
@ -0,0 +1,25 @@
|
|||
shared_library("LibAccelGfx") {
|
||||
output_name = "accelgfx"
|
||||
include_dirs = [ "//Userland/Libraries" ]
|
||||
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibGfx",
|
||||
]
|
||||
if (current_os == "linux") {
|
||||
libs = [
|
||||
"GL",
|
||||
"EGL",
|
||||
]
|
||||
}
|
||||
sources = [
|
||||
"Canvas.cpp",
|
||||
"Canvas.h",
|
||||
"Context.cpp",
|
||||
"Context.h",
|
||||
"Forward.h",
|
||||
"Painter.cpp",
|
||||
"Painter.h",
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue