summaryrefslogtreecommitdiffstats
path: root/tests/libfuzzer/corelib/serialization/qtextstream/extractionoperator-float/CMakeLists.txt
blob: 96fd5790a2dbccde1c2f950aee7383fa31b058b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
cmake_minimum_required(VERSION 3.14)
project(extractionoperator-float 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(extractionoperator-float
    main.cpp
)

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