diff --git a/include/vkcv/Utils.hpp b/include/vkcv/Utils.hpp
new file mode 100644
index 0000000000000000000000000000000000000000..4158a70a661942be167ea630168ebfd47dedf694
--- /dev/null
+++ b/include/vkcv/Utils.hpp
@@ -0,0 +1,13 @@
+#pragma once
+#include <string>
+
+namespace utils {
+    
+    /**
+     * @brief Given a relative path to the executable, the absolute path is returned
+     * 
+     * @param path The relative path
+     * @return std::string The absolute path
+     */
+    std::string absolutePath(std::string path);
+}