Bart Garst wrote: > > import set ; > > > > ......... [ set.difference [ glob *.hpp ] : file_you_dont_want.hpp ] > > I made the changes but the unwanted file is still being processed. > > Here's what my Jamfile.v2 looks like (abbreviated of course): > import set ; > ... > local date_time_files = [ set.difference > [ glob ../../../boost/date_time/*.hpp ] : > ../../../boost/date_time/testfrmwk.hpp ] ; > > doxygen date_time_autodoc : > $(date_time_files) > ; > > FWIW I also tried it without the path to testfrmwk.hpp and that didn't > work either. > > Any suggestions?
Yea. local date_time_files = [ set.difference [ glob ../../../boost/date_time/*.hpp ] : [ glob ../../../boost/date_time/testfrmwk.hpp ] ] ; glob might well return the paths in some format you don't expect: e.g. absolute paths. If even the above does not work, add ECHO [ glob ...... ] ; to find out what's returned. - Volodya ------------------------------------------------------- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com _______________________________________________ Boost-docs mailing list [EMAIL PROTECTED] Unsubscribe and other administrative requests: https://lists.sourceforge.net/lists/listinfo/boost-docs
