From 6feddc10686f0ce0d91e14b1c6a2f1c08e465f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Sun, 24 Nov 2024 00:00:00 +0000 Subject: [PATCH] [tools] Force regeneration of mocs_compilation.cpp when CMake fails MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ferenc Géczi --- tools/unix/build_omim.sh | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tools/unix/build_omim.sh b/tools/unix/build_omim.sh index e45f9cfb48..588a6ec74f 100755 --- a/tools/unix/build_omim.sh +++ b/tools/unix/build_omim.sh @@ -54,9 +54,11 @@ done OPT_TARGET=${@:$OPTIND} +NO_QT_LOCATION= CMAKE_CONFIG="${CMAKE_CONFIG:-} -U SKIP_QT_GUI" if [ "$OPT_TARGET" != "desktop" -a -z "$OPT_DESIGNER" -a -z "$OPT_STANDALONE" ]; then CMAKE_CONFIG="${CMAKE_CONFIG:-} -DSKIP_QT_GUI=ON" + NO_QT_LOCATION=1 fi # By default build everything @@ -126,7 +128,21 @@ build() else DIRNAME="$OMIM_PATH/../omim-build-$(echo "$CONF" | tr '[:upper:]' '[:lower:]')" fi - [ -d "$DIRNAME" -a -n "$OPT_CLEAN" ] && rm -r "$DIRNAME" + if [ -d "$DIRNAME" -a -n "$OPT_CLEAN" ]; then + rm -r "$DIRNAME" + else + if grep -q qt_location "$DIRNAME/platform/platform_autogen/mocs_compilation.cpp"; then + if [ -n "${NO_QT_LOCATION}" ]; then + # If mocs file includes the qt_location dependent unit but the target doesn't need it + rm -f "$DIRNAME/platform/platform_autogen/mocs_compilation.cpp" + fi + else + if [ -z "${NO_QT_LOCATION}" ]; then + # If mocs file is missing the qt_location dependent unit but the target requires it + rm -f "$DIRNAME/platform/platform_autogen/mocs_compilation.cpp" + fi + fi + fi if [ ! -d "$DIRNAME" ]; then mkdir -p "$DIRNAME" fi -- 2.45.3