On Fri, 02 Jul 2004 09:53:49 +0400, Vladimir Prus wrote:

> Bart Garst wrote:
>> I'm using doxygen to extract documentation. In my Jamfile.v2 I have:
>>   doxygen date_time_autodoc :
>>     [ glob ../../../boost/date_time/*.hpp ] ;
>>
>> This does a nice job of processing every *.hpp file in that directory.
>>
>> But what if I want all but one of those files? Is there a means to exclude
>> a list of files when using the glob directive(?).
> 
> Not with glob, but you can do:
> 
> 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?

Thx,
Bart




-------------------------------------------------------
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

Reply via email to