blob: 5544456714adfa754b1fe49ab96be7bb0ef85ccf [file] [log] [blame]
Enrico Granata6a8782c2019-05-09 15:13:34 -07001// Copyright 2019 The Android Open Source Project
2
3cc_library_headers {
4 name: "libiio_headers",
5 export_include_dirs: ["include"],
6}
7
8cc_library_shared {
9 name: "libiio",
10 srcs: [
11 "src/backend.c",
12 "src/buffer.c",
13 "src/channel.c",
14 "src/context.c",
15 "src/device.c",
16 "src/local.c",
17 "src/scan.c",
Ryo Hashimoto8fcb4fb2020-02-03 18:17:14 +090018 "src/sort.c",
Enrico Granata6a8782c2019-05-09 15:13:34 -070019 "src/utilities.c",
20 ],
21
22 cflags: [
23 "-Wall",
24 "-Werror",
Ryo Hashimoto8fcb4fb2020-02-03 18:17:14 +090025 "-Wno-sign-compare",
Enrico Granata6a8782c2019-05-09 15:13:34 -070026 "-Wno-unused-parameter",
27 ],
28}