mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 09:55:08 +00:00
14 lines
270 B
Text
14 lines
270 B
Text
shared_library("LibFileSystem") {
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"FileSystem.cpp",
|
|
"FileSystem.h",
|
|
"TempFile.cpp",
|
|
"TempFile.h",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
output_name = "filesystem"
|
|
}
|