1
0
mirror of https://github.com/rtbrick/bngblaster.git synced 2024-05-06 15:54:57 +00:00
rtbrick-bngblaster/fuzzing/CMakeLists.txt

13 lines
341 B
CMake
Raw Normal View History

cmake_minimum_required (VERSION 3.0)
project(bngbalster-fuzzing C)
set(CMAKE_C_COMPILER "afl-gcc")
set(PROPERTIES
POSITION_INDEPENDENT_CODE OFF)
include_directories("../src")
add_executable(fuzz-protocols-decode protocols_decode.c ../src/bbl_protocols.c)
target_compile_options(fuzz-protocols-decode PRIVATE -Wall -Wextra -pedantic)