I am making static library for the first time and I need to input all .h dependencies in stdafx.h, however there are so many that I have to ask if there is some command to instead inputting every single h file individually, include whole directory at once, something like shown below:
#include "lib\behaviors\ *"
#include "lib\automaticProcessing\ *"
Thanks on your feedback.
P.S. I forgot to mention that I know for “making a giant” technique, where you put all dependencies in one .h file, and then include only that .h where is needed( like in this occasion ) but I forgot to apply that technique while I was building my library, so I am stuck now without that help.
dir *.h > all_headers.hfollowed by a little editing of the output. Then just#include "all_headers.h"in each of your sources. There isn’t any wildcard you can apply to #include.