19 lines
339 B
Plaintext
19 lines
339 B
Plaintext
|
|
import("//build/userland/TEMPLATE.gni")
|
||
|
|
|
||
|
|
xOS_executable("homescreen") {
|
||
|
|
install_path = "System/"
|
||
|
|
sources = [
|
||
|
|
"AppDelegate.cpp",
|
||
|
|
"AppListView.cpp",
|
||
|
|
"HomeScreenView.cpp",
|
||
|
|
"IconView.cpp",
|
||
|
|
]
|
||
|
|
configs = [ "//build/userland:userland_flags" ]
|
||
|
|
deplibs = [
|
||
|
|
"libcxx",
|
||
|
|
"libfoundation",
|
||
|
|
"libg",
|
||
|
|
"libui",
|
||
|
|
]
|
||
|
|
}
|