aboutsummaryrefslogtreecommitdiffstats
path: root/configure.bat
blob: 9c0e0e620e820e1d79bfa2a83bf005c9328d75e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
:: Copyright (C) 2024 The Qt Company Ltd.
:: SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

@echo off
setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
set script_dir_path=%~dp0
set script_dir_path=%script_dir_path:~0,-1%

set cmake_scripts_dir=%script_dir_path%\cmake
:: The '.' in 'echo.%*' ensures we don't print "echo is off" when no arguments are passed
:: https://devblogs.microsoft.com/oldnewthing/20170802-00/?p=96735
:: The space before the '>' makes sure that when we have a digit at the end of the args, we
:: don't accidentally concatenate it with the '>' resulting in '0>' or '2>' which redirects into the
:: file from a stream different than stdout, leading to broken or empty content.
echo.%* >config.tl.opt.in

call cmake -DIN_FILE=config.tl.opt.in -DOUT_FILE=config.tl.opt ^
    -P "%cmake_scripts_dir%\QtWriteArgsFile.cmake"
call cmake -DOPTFILE=config.tl.opt -DTOP_LEVEL_SRC_PATH="%script_dir_path%" ^
    -P "%cmake_scripts_dir%\QtTopLevelConfigureScript.cmake"

del config.tl.opt.in
del config.tl.opt