blob: c2b34273270d45f8a5eef1b82a795a35cad76dc0 [file] [log] [blame]
#
# Copyright (C) 2015-2019 Felix Weinrank
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the project nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
#project(usrsctp-fuzzer C)
#################################################
# INCLUDE MODULES
#################################################
include(CheckIncludeFile)
#################################################
# CHECK INCLUDES
#################################################
include_directories(${CMAKE_SOURCE_DIR}/usrsctplib)
#################################################
# OS DEPENDENT
#################################################
if (CMAKE_SYSTEM_NAME MATCHES "Linux")
add_definitions(-D_GNU_SOURCE)
endif ()
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
add_definitions(-D__APPLE_USE_RFC_2292)
endif ()
#################################################
# COMPILER FLAGS
#################################################
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-gnu-zero-variadic-macro-arguments")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=fuzzer")
#################################################
# PROGRAMS
#################################################
# if in fuzzing mode, only build the fuzzer
configure_file(crashtest.py crashtest.py COPYONLY)
configure_file(fuzzer_unconnected.sh fuzzer_unconnected.sh COPYONLY)
configure_file(fuzzer_connected.sh fuzzer_connected.sh COPYONLY)
list(APPEND check_programs
fuzzer_unconnected.c
fuzzer_connected.c
)
foreach (source_file ${check_programs})
get_filename_component(source_file_we ${source_file} NAME_WE)
add_executable(
${source_file_we}
${source_file}
)
target_link_libraries(
${source_file_we}
usrsctp-static
)
endforeach ()