I understand that when compiling with g++, -I
is used to include header files, and -L
is used to link with library files. But here is a g++ compile command from google-breakpad minidump_file_writer_unittest located at line 33
:
g++ -I../ ../common/convert_UTF.c \
../common/string_conversion.cc \
minidump_file_writer.cc \
minidump_file_writer_unittest.cc \
-o minidump_file_writer_unittest
Now what exactly does -I../
imply here? Is it including all the header files inside this directory and subdirectories?