Fix out of tree build header search path
Until interface headers are installed in the sysroot, iquote
must be used to get correct header search paths when building
out of tree.
Change-Id: I4a357cc173a793ac9026e737869604477cdf193b
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/interface.hpp b/interface.hpp
index 4196098..d5b0ca4 100644
--- a/interface.hpp
+++ b/interface.hpp
@@ -1,8 +1,8 @@
#pragma once
-#include <xyz/openbmc_project/Sensor/Value/server.hpp>
-#include <xyz/openbmc_project/Sensor/Threshold/Warning/server.hpp>
-#include <xyz/openbmc_project/Sensor/Threshold/Critical/server.hpp>
+#include "xyz/openbmc_project/Sensor/Value/server.hpp"
+#include "xyz/openbmc_project/Sensor/Threshold/Warning/server.hpp"
+#include "xyz/openbmc_project/Sensor/Threshold/Critical/server.hpp"
#include <sdbusplus/server.hpp>
template <typename... T>