Do not build fuzz on windows

This commit is contained in:
Philippe Antoine 2019-07-10 20:37:57 +02:00
parent 42a2ce8255
commit a864db0dd6
2 changed files with 10 additions and 2 deletions

View file

@ -6,4 +6,6 @@ add_subdirectory(ssl)
add_subdirectory(test)
add_subdirectory(x509)
add_subdirectory(util)
add_subdirectory(fuzz)
if (NOT WIN32)
add_subdirectory(fuzz)
endif()

View file

@ -92,7 +92,13 @@ endif
.PHONY: all clean list fuzz
all: $(APPS) fuzz
all: $(APPS)
ifndef WINDOWS
# APPS doesn't include the fuzzing programs, which aren't "normal"
# sample or test programs, and don't build with MSVC which is
# warning about fopen
all: fuzz
endif
fuzz:
$(MAKE) -C fuzz