blob: b7990ffd1eb8044f0cb0485fedeb8b2b346ed4a6 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
executable("kilo") {
sources = [
"kilo.c",
]
configs += [ ":config" ]
deps = [
"$zx/system/ulib/fdio",
]
}
config("config") {
visibility = [ ":*" ]
if (is_gcc) {
cflags_c = [ "-Wno-discarded-qualifiers" ]
} else {
cflags = [ "-Wno-incompatible-pointer-types-discards-qualifiers" ]
}
}