'Is there a way to include paths in the macros itself in CLING?

I have been using Root built on CLING technology during my internship. I know I can include header files after including the path to it.

.I C:\Me\Code\
.x includeFiles.c

where includeFile.c lies in macros folder:

#include "h1.h"
#include "h2.h"

But this too is a bit of a task. I want to set the include path command in macros itself. After reading the doc, I tried doing this but it says : "gSystem not found!"

gSystem->AddIncludePath("C:\Me\Code\");
#include "h1.h"
#include "h2.h"

Please help me with this .. !



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source