From ebf5b422be49cbae1bbf983db40276c18cf8e706 Mon Sep 17 00:00:00 2001 From: Lawrence Lee <45837045+Lawrence37@users.noreply.github.com> Date: Sun, 31 Dec 2023 12:33:01 -0800 Subject: [PATCH] Use proper include for LibRaw The include directory for LibRaw is properly set by CMake so `#include ` will work for both the internal and system versions. --- rtengine/rawimage.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rtengine/rawimage.cc b/rtengine/rawimage.cc index 45c89ca7c..c7aca8b05 100644 --- a/rtengine/rawimage.cc +++ b/rtengine/rawimage.cc @@ -13,13 +13,14 @@ #include #endif +#include + #include "image8.h" #include "rawimage.h" #include "settings.h" #include "camconst.h" #include "utils.h" #include "rtengine.h" -#include "libraw/libraw/libraw.h" namespace rtengine {