11 lines
242 B
Plaintext
Raw Normal View History

2018-01-28 13:32:06 -05:00
config("compiler") {
if (is_win) {
if (is_component_build) {
cflags += [
"/EHsc", # Assume C functions can't throw exceptions and don't catch
# structured exceptions (only C++ ones).
]
}
}
}