19 lines
404 B
Plaintext
19 lines
404 B
Plaintext
import("//llvm/utils/gn/build/libs/xml/enable.gni")
|
|
import("//llvm/utils/gn/build/mac_sdk.gni")
|
|
|
|
config("xml_config") {
|
|
visibility = [ ":xml" ]
|
|
libs = [ "xml2" ]
|
|
if (host_os == "mac") {
|
|
include_dirs = [ "$mac_sdk_path/usr/include/libxml2" ]
|
|
} else {
|
|
include_dirs = [ "/usr/include/libxml2" ]
|
|
}
|
|
}
|
|
|
|
group("xml") {
|
|
if (llvm_enable_libxml2) {
|
|
public_configs = [ ":xml_config" ]
|
|
}
|
|
}
|