qt5base-lts/bin/qt-configure-module.in
Joerg Bornemann de3bd64425 CMake: Prepare configure/qt-configure-module for calling more scripts
In a subsequent change we will call another CMake script from
qt-configure-module.bat. Write the location of qtbase/cmake into the
generated scripts instead of the path to QtProcessConfigureArgs.cmake.

Change-Id: Ie333b16d310b215c6e49efa27740c7525453d28f
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
2020-10-30 08:22:26 +01:00

31 lines
761 B
Bash
Executable File

#!/bin/sh
script_dir_path=`dirname $0`
script_dir_path=`(cd "$script_dir_path"; /bin/pwd)`
printUsage()
{
echo 'Usage: qt-configure-module <module-source-dir> [options]'
}
if [ "$#" -lt 1 ]; then
printUsage
exit 1
fi
module_root=$1
shift
if [ ! -f "$module_root/CMakeLists.txt" ]; then
echo >&2 "Error: $module_root is not a valid Qt module source directory."
printUsage
exit 1
fi
optfile=config.opt
echo > "$optfile"
for arg in "$@"; do
echo $arg >> "$optfile"
done
cmake_script_path="$script_dir_path/@__relative_path_to_cmake_scripts_dir@/QtProcessConfigureArgs.cmake"
"$script_dir_path/qt-cmake-private" -DOPTFILE=$optfile -DMODULE_ROOT="$module_root" -DCMAKE_COMMAND="$script_dir_path/qt-cmake-private" -P "$cmake_script_path"