Build: Use CMake VERBOSE for Profile large

There is random build issue on Profile large configs. Print more
detailed CMake commands to help debug.

This patch shall be reverted once the issue being addressed.

Signed-off-by: Xinyu Zhang <xinyu.zhang@arm.com>
Change-Id: If6574c8369b3a9f87d4452485e127d50b475ceec
diff --git a/tfm_ci_pylib/tfm_build_manager.py b/tfm_ci_pylib/tfm_build_manager.py
index b4df071..736cdd7 100644
--- a/tfm_ci_pylib/tfm_build_manager.py
+++ b/tfm_ci_pylib/tfm_build_manager.py
@@ -399,6 +399,10 @@
         # these also need to be substituted
         overwrite_params["extra_params"] = self.map_params(i.extra_params, mapExtraParams) % overwrite_params
 
+        # Print more cmake command details to debug issue on Profile large
+        if i.profile == "profile_large":
+            overwrite_params["extra_params"] += " -DCMAKE_VERBOSE_MAKEFILE=ON"
+
         if i.test_psa_api == "IPC":
             overwrite_params["test_psa_api"] += " -DINCLUDE_PANIC_TESTS=1"
         if i.test_psa_api == "CRYPTO" and "musca" in i.tfm_platform: