mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-12 02:36:39 +00:00
15 lines
270 B
Plaintext
15 lines
270 B
Plaintext
shared_library("LibFileSystem") {
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"FileSystem.cpp",
|
|
"FileSystem.h",
|
|
"TempFile.cpp",
|
|
"TempFile.h",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
output_name = "filesystem"
|
|
}
|