diff --git a/src/bindings/cpp/cpp_tests.cpp b/src/bindings/cpp/cpp_tests.cpp
index d708208bb7e353c6cbf74b61b334fa0b418ada8b..8677c82e5424d168b924272f2040c9f2f8870ade 100644
--- a/src/bindings/cpp/cpp_tests.cpp
+++ b/src/bindings/cpp/cpp_tests.cpp
@@ -1,6 +1,6 @@
 #include <gtest/gtest.h>
 #include <hammer/hammer.hpp>
-#include <hammer/internal.h>
+#include "../../internal.h"
 #include <hammer/hammer_test.hpp>
 
 #define a_new_(arena, typ, count) ((typ*)h_arena_malloc((arena), sizeof(typ)*(count)))
diff --git a/src/bindings/cpp/hammer/hammer.hpp b/src/bindings/cpp/hammer/hammer.hpp
index c33814e2987b509edee481976d5cc4c39d99c323..b9de6716a93a844227bd5317699a5fb0726c66a2 100644
--- a/src/bindings/cpp/hammer/hammer.hpp
+++ b/src/bindings/cpp/hammer/hammer.hpp
@@ -1,7 +1,7 @@
 #ifndef HAMMER_HAMMER__HPP
 #define HAMMER_HAMMER__HPP
 
-#include <hammer/hammer.h>
+#include "../../../hammer.h"
 #include <string>
 #include <stdint.h>
 #include <cstdarg>