mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 12:55:08 +00:00
9 lines
165 B
Text
9 lines
165 B
Text
static_library("LibMain") {
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"Main.cpp",
|
|
"Main.h",
|
|
]
|
|
deps = [ "//AK" ]
|
|
output_name = "main"
|
|
}
|