# Does not work:

ECHO [ glob *.cpp : excludefile.cpp ] ;

#exe helloworld
#	: [ glob *.cpp : excludefile.cpp ]
#	;


# Workaround:

import set ;
ECHO [ set.difference [ glob *.cpp ] : excludefile.cpp ] ;

exe helloworld
	: [ set.difference [ glob *.cpp ] : excludefile.cpp ]
	;
