summaryrefslogtreecommitdiffstats
path: root/cmake/QtUnityBuildHelpers.cmake
blob: 41062b027c7662eb8b7d5763f87e644412331e51 (plain)
1
2
3
4
5
6
7
8
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

function(qt_update_ignore_unity_build_sources target sources)
    if (sources)
        set_source_files_properties(${sources} PROPERTIES SKIP_UNITY_BUILD_INCLUSION ON)
    endif()
endfunction()