diff options
Diffstat (limited to 'Jamfile.jam')
-rw-r--r-- | Jamfile.jam | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Jamfile.jam b/Jamfile.jam index 512e2c9..e140f35 100644 --- a/Jamfile.jam +++ b/Jamfile.jam @@ -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 @@ -144,7 +146,7 @@ for SAMPLE in [ Glob docs/samples : *.cpp ] } # release -VERSION = 1.5 ; +VERSION = 1.6 ; RELEASE_FILES = [ Glob contrib : *.cpp *.hpp ] [ Glob src : *.cpp *.hpp ] |