xref: /llvm-project/llvm/utils/gn/secondary/lldb/include/lldb/Host/libedit.gni (revision cfe02847496b856aa1628cae854997833043ec32)
1declare_args() {
2  # Whether lldb links against libedit. Set to `true` or `false`, or to
3  # `"default"` to get the platform default.
4  lldb_enable_libedit = "default"
5}
6
7if (lldb_enable_libedit == "default") {
8  lldb_enable_libedit = current_os == "mac"
9}
10