39 lines
740 B
Plaintext
39 lines
740 B
Plaintext
import("//build/libs/TEMPLATE.gni")
|
|
|
|
xOS_static_library("libui") {
|
|
sources = [
|
|
"src/App.cpp",
|
|
"src/Button.cpp",
|
|
"src/ClientDecoder.cpp",
|
|
"src/CollectionView.cpp",
|
|
"src/Connection.cpp",
|
|
"src/ContextManager.cpp",
|
|
"src/Label.cpp",
|
|
"src/MenuBar.cpp",
|
|
"src/PopupMenu.cpp",
|
|
"src/Responder.cpp",
|
|
"src/ScrollView.cpp",
|
|
"src/StackView.cpp",
|
|
"src/TextField.cpp",
|
|
"src/TextView.cpp",
|
|
"src/View.cpp",
|
|
"src/ViewController.cpp",
|
|
"src/Window.cpp",
|
|
"src/main.cpp",
|
|
]
|
|
|
|
deplibs = [
|
|
"libcxx",
|
|
"libfoundation",
|
|
"libipc",
|
|
"libg",
|
|
"libapi",
|
|
"libfreetype",
|
|
]
|
|
configs = [ "//build/libs:libcxx_flags" ]
|
|
|
|
if (host == "llvm") {
|
|
cflags = [ "-flto" ]
|
|
}
|
|
}
|