mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 23:05:41 +01:00
Do not build fuzz on windows
This commit is contained in:
parent
42a2ce8255
commit
a864db0dd6
@ -6,4 +6,6 @@ add_subdirectory(ssl)
|
|||||||
add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
add_subdirectory(x509)
|
add_subdirectory(x509)
|
||||||
add_subdirectory(util)
|
add_subdirectory(util)
|
||||||
|
if (NOT WIN32)
|
||||||
add_subdirectory(fuzz)
|
add_subdirectory(fuzz)
|
||||||
|
endif()
|
||||||
|
@ -92,7 +92,13 @@ endif
|
|||||||
|
|
||||||
.PHONY: all clean list fuzz
|
.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:
|
fuzz:
|
||||||
$(MAKE) -C fuzz
|
$(MAKE) -C fuzz
|
||||||
|
Loading…
Reference in New Issue
Block a user