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