From 4973196e5afdc417ffb2003fc148cfa8272303d1 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Mon, 9 Mar 2020 18:03:25 +0100 Subject: [PATCH] Restore fuzz to the cmake build --- programs/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/programs/CMakeLists.txt b/programs/CMakeLists.txt index 661b12071a..61f02e86f2 100644 --- a/programs/CMakeLists.txt +++ b/programs/CMakeLists.txt @@ -1,4 +1,7 @@ add_subdirectory(aes) +if (NOT WIN32) + add_subdirectory(fuzz) +endif() add_subdirectory(hash) add_subdirectory(pkey) add_subdirectory(psa)