Fix Jamfile (exclude fuzz_*.cpp)

This commit is contained in:
Arseny Kapoulkine
2015-03-20 00:30:27 -07:00
parent 58609480a1
commit 5d4f605fd2

View File

@@ -88,7 +88,9 @@ for CONFIG in $(CONFIGURATIONS)
# build tests
local TESTS = $(CFGBUILD)/tests.exe ;
Application $(TESTS) : [ Glob tests : *.cpp ] : $(CFGFLAGS) : $(PUGIXML) ;
local TEST_SOURCES = [ Glob tests : *.cpp ] ;
TEST_SOURCES -= [ Glob tests : fuzz_*.cpp ] ;
Application $(TESTS) : $(TEST_SOURCES) : $(CFGFLAGS) : $(PUGIXML) ;
Alias tests : $(TESTS) ;
# run tests