summaryrefslogtreecommitdiffstats
path: root/coin/instructions/cmake_module_build_instructions.yaml
diff options
context:
space:
mode:
authorToni Saario <toni.saario@qt.io>2020-05-27 16:24:24 +0300
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-07-24 17:33:17 +0200
commit716e41e86fb1999696fcfceace3d42e143631c29 (patch)
tree28fe9b2b34b215321594a5f3f77c5c001fb70a98 /coin/instructions/cmake_module_build_instructions.yaml
parent684fea131433dcbb6d24feaf261404d1d9cf69b4 (diff)
CMake: Use CMAKE_AUTOGEN_VERBOSE to see moc invocations
In qmake builds we can see the moc invocations, whereas in CMake builds by default we don't. Modify the Coin instructions to pass the CMAKE_AUTOGEN_VERBOSE cache variable so that AUTOMOC prints the moc invocations. Change-Id: I50be13224839fbbdece3c9e8a4935a72aba91a8e Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Diffstat (limited to 'coin/instructions/cmake_module_build_instructions.yaml')
-rw-r--r--coin/instructions/cmake_module_build_instructions.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/coin/instructions/cmake_module_build_instructions.yaml b/coin/instructions/cmake_module_build_instructions.yaml
index d65629108d..85dcbcfe63 100644
--- a/coin/instructions/cmake_module_build_instructions.yaml
+++ b/coin/instructions/cmake_module_build_instructions.yaml
@@ -9,7 +9,7 @@ instructions:
- type: EnvironmentVariable
variableName: COIN_CMAKE_ARGS
# The lack of space between the non qtbase configure args and the rest of the args is important!
- variableValue: "{{.Env.NON_QTBASE_CONFIGURE_ARGS}} -DBUILD_TESTING=OFF {{.SourceDir}}"
+ variableValue: "{{.Env.NON_QTBASE_CONFIGURE_ARGS}} -DBUILD_TESTING=OFF -DCMAKE_AUTOGEN_VERBOSE=ON {{.SourceDir}}"
- !include "{{qt/qtbase}}/call_cmake.yaml"
- type: ExecuteCommand
command: "{{.Env.ENV_PREFIX}} cmake --build . --parallel -v"