From 4f70113da8f6389c950cc5f39d50b3c08e420b3b Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Fri, 25 Jun 2021 08:45:45 +0200 Subject: [PATCH] Fix bazel build: Add missing headers to exrenvmap --- BUILD.bazel | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index 38e28a9b48..8cc343cf71 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -415,12 +415,10 @@ cc_binary( "src/bin/exrenvmap/blurImage.cpp", "src/bin/exrenvmap/main.cpp", "src/bin/exrenvmap/makeCubeMap.cpp", - "src/bin/exrenvmap/makeCubeMap.h", "src/bin/exrenvmap/makeLatLongMap.cpp", "src/bin/exrenvmap/readInputImage.cpp", - "src/bin/exrenvmap/readInputImage.h", "src/bin/exrenvmap/resizeImage.cpp", - ], + ] + glob(["src/bin/exrenvmap/*.h"]), includes = [ "src/bin/exrenvmap", ],