Do not build fuzz on windows
This commit is contained in:
parent
42a2ce8255
commit
a864db0dd6
2 changed files with 10 additions and 2 deletions
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue