20 lines
213 B
Plaintext
20 lines
213 B
Plaintext
|
shared_library("test") {
|
||
|
# NOSORT
|
||
|
sources = [
|
||
|
"z.cc",
|
||
|
"a.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//abc:deps",
|
||
|
]
|
||
|
include_dirs = [ "." ]
|
||
|
|
||
|
if (is_win) {
|
||
|
sources += [
|
||
|
"a.cpp",
|
||
|
"b.cpp",
|
||
|
]
|
||
|
}
|
||
|
}
|