summaryrefslogtreecommitdiffstats
path: root/coin/instructions/qmake/ensure_pro_file.cmake
blob: 0dd8b4a8e7ece9964ccca181d337882f62efcffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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()