summaryrefslogtreecommitdiffstats
path: root/coin/instructions/qmake/ensure_pro_file.cmake
blob: b75fcef246e94cc4e8003296a9b77a548cae54af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

# CMake script to ensure that a qmake project file exists.
#
# Usage: cmake -DPRO_FILE=.../project.pro -P .../ensure_pro_file.cmake
#
# This script checks for existence of ${PRO_FILE} and creates a fake one, if needed.
#

if(NOT EXISTS "${PRO_FILE}")
    get_filename_component(dir "${PRO_FILE}" DIRECTORY)
    if(NOT IS_DIRECTORY "${dir}")
        file(MAKE_DIRECTORY "${dir}")
    endif()

    file(WRITE "${PRO_FILE}" "TEMPLATE = aux
")
endif()