25 lines
420 B
Plaintext
25 lines
420 B
Plaintext
import("//build/libs/TEMPLATE.gni")
|
|
|
|
xOS_static_library("libg") {
|
|
sources = [
|
|
"src/Color.cpp",
|
|
"src/Context.cpp",
|
|
"src/Font.cpp",
|
|
"src/ImageLoaders/PNGLoader.cpp",
|
|
"src/PixelBitmap.cpp",
|
|
"src/Rect.cpp",
|
|
]
|
|
|
|
deplibs = [
|
|
"libcxx",
|
|
"libfoundation",
|
|
"libipc",
|
|
"libfreetype",
|
|
]
|
|
configs = [ "//build/libs:libcxx_flags" ]
|
|
|
|
if (host == "llvm") {
|
|
cflags = [ "-flto" ]
|
|
}
|
|
}
|