mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 20:55:08 +00:00
13 lines
251 B
Text
13 lines
251 B
Text
shared_library("LibGLSL") {
|
|
output_name = "glsl"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"Compiler.cpp",
|
|
"Linker.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibGPU",
|
|
]
|
|
}
|