You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
403 B
13 lines
403 B
2 years ago
|
# This is part of the netCDF package.
|
||
|
# Copyright 2022 University Corporation for Atmospheric Research/Unidata
|
||
|
# See COPYRIGHT file for conditions of use.
|
||
|
#
|
||
|
# Added for fuzzing in https://github.com/Unidata/netcdf-c/pull/1972
|
||
|
#
|
||
|
# @authors Ward Fisher
|
||
|
|
||
|
if(DEFINED ENV{LIB_FUZZING_ENGINE})
|
||
|
add_executable(fuzz_open fuzz_open.c)
|
||
|
target_link_libraries(fuzz_open netcdf $ENV{LIB_FUZZING_ENGINE})
|
||
|
endif()
|