summaryrefslogtreecommitdiffstats
path: root/tests/libfuzzer/corelib/serialization/qtextstream/extractionoperator-float/CMakeLists.txt
blob: 4ab7142d8e6f2c334429d2e7187c149b21792ca3 (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
28
29
30
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

cmake_minimum_required(VERSION 3.16)
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 REQUIRED 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()