cmake_minimum_required(VERSION 3.14)
project(fromstring LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)

find_package(Qt6 COMPONENTS Core)

qt_add_executable(fromstring
    main.cpp
)

target_link_libraries(fromstring PUBLIC
    Qt::Core
)
if(DEFINED ENV{LIB_FUZZING_ENGINE})
    target_link_libraries(fromstring PRIVATE
        $ENV{LIB_FUZZING_ENGINE}
    )
else()
    target_link_libraries(fromstring PRIVATE
        -fsanitize=fuzzer
    )
endif()
