Fix Jamfile (exclude fuzz_*.cpp)
This commit is contained in:
parent
58609480a1
commit
5d4f605fd2
@ -88,7 +88,9 @@ for CONFIG in $(CONFIGURATIONS)
|
|||||||
|
|
||||||
# build tests
|
# build tests
|
||||||
local TESTS = $(CFGBUILD)/tests.exe ;
|
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) ;
|
Alias tests : $(TESTS) ;
|
||||||
|
|
||||||
# run tests
|
# run tests
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user