From 8562a4ec48fc49fbacac9783530443b60955f5a4 Mon Sep 17 00:00:00 2001 From: Paolo Tricerri Date: Sun, 24 Sep 2023 13:52:43 +0000 Subject: Remove CommonGraphOptions from Utils target and warnings Signed-off-by: Paolo Tricerri Change-Id: If4e2944e25e48c8b7a1a6713e57838d449a987ea Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10366 Benchmark: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Viet-Hoa Do Comments-Addressed: Arm Jenkins --- utils/BUILD.bazel | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/BUILD.bazel b/utils/BUILD.bazel index 32d6a61638..2be7ee193b 100644 --- a/utils/BUILD.bazel +++ b/utils/BUILD.bazel @@ -22,7 +22,15 @@ cc_library( name = "utils", - srcs = glob(["**/*.cpp"]), + srcs = glob( + [ + "**/*.cpp" + ], + exclude = glob( + [ + "CommonGraphOptions.cpp", + ]), + ), hdrs = glob(["**/*.h"]), visibility = ["//visibility:public"], deps = [ @@ -33,3 +41,8 @@ cc_library( "//support", ], ) + +exports_files( + ["CommonGraphOptions.cpp"], + visibility = ["//visibility:public"] +) -- cgit v1.2.1