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