mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:27:34 +00:00
Meta: Add CodeGenerators and library dependencies for them to gn build
This commit is contained in:
parent
cbda1a6c73
commit
05f56e09b5
12 changed files with 218 additions and 1 deletions
14
Meta/gn/secondary/Userland/Libraries/LibFileSystem/BUILD.gn
Normal file
14
Meta/gn/secondary/Userland/Libraries/LibFileSystem/BUILD.gn
Normal file
|
@ -0,0 +1,14 @@
|
|||
shared_library("LibFileSystem") {
|
||||
include_dirs = [ "//Userland/Libraries" ]
|
||||
sources = [
|
||||
"FileSystem.cpp",
|
||||
"FileSystem.h",
|
||||
"TempFile.cpp",
|
||||
"TempFile.h",
|
||||
]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
]
|
||||
output_name = "filesystem"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue