diff options
author | Alexey Vishnyakov <vishnya@ispras.ru> | 2022-10-20 12:02:00 +0300 |
---|---|---|
committer | Alexey Vishnyakov <vishnya@ispras.ru> | 2022-10-20 12:02:00 +0300 |
commit | fd3b37f2b6b5a14acc26e7fa1564c87167436f87 (patch) | |
tree | bbb6f3d0b6901cf763cf044bd0feddd510fe3d5a /testprogs | |
parent | 38185c896b55613294064cf2b2b282e376749730 (diff) |
fuzz: Disable fuzz targets for Windows
Diffstat (limited to 'testprogs')
-rw-r--r-- | testprogs/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testprogs/CMakeLists.txt b/testprogs/CMakeLists.txt index 567f42aa..e53cd164 100644 --- a/testprogs/CMakeLists.txt +++ b/testprogs/CMakeLists.txt @@ -48,4 +48,8 @@ if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR add_test_executable(valgrindtest) endif() -add_subdirectory(fuzz) +if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR + CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR + CMAKE_SYSTEM_NAME STREQUAL "Linux") + add_subdirectory(fuzz) +endif() |