当在doxygen中配置Doxyfile
的INPUT时,我发现为INPUT分配路径名和空格是很尴尬的。
我知道它像
INPUT= main.cpp circle.cpp circle.h point.cpp point.h \
rectangle.cpp rectangle.h shape.cpp shape.h \
shapefactory.cpp shapefactory.h triangle.cpp triangle.h
这些文件位于/Volumes/GoogleDrive/My Drive/tmp/
中的位置,其中路径名中有空格。因此下面的方法不起作用
INPUT= /Volumes/GoogleDrive/"My Drive"/tmp/
INPUT= "/Volumes/GoogleDrive/My Drive/tmp/"
有什么方法可以为INPUT分配路径名,而不是在所有文件名中键入。 最好。