INCLUDEPATH
Includepath is a term used in software development to describe a collection of directory paths that a compiler, interpreter, or build system searches for include or import files. The concept helps tools locate header files, modules, or other resources that are not in the current working directory. While the exact spelling and usage vary by tool, includepath broadly refers to the include search path used during compilation or linking.
In compilers and build systems, includepath is commonly implemented as a set of directories added to the
The order and contents of an includepath affect which files are found and which files take precedence
See also: include directive, header search path, include directories, module resolution.