summaryrefslogtreecommitdiffstats
path: root/coin/instructions/qmake_examples/build_qmake_examples_instructions.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'coin/instructions/qmake_examples/build_qmake_examples_instructions.yaml')
-rw-r--r--coin/instructions/qmake_examples/build_qmake_examples_instructions.yaml31
1 files changed, 31 insertions, 0 deletions
diff --git a/coin/instructions/qmake_examples/build_qmake_examples_instructions.yaml b/coin/instructions/qmake_examples/build_qmake_examples_instructions.yaml
new file mode 100644
index 0000000000..bbc31f7676
--- /dev/null
+++ b/coin/instructions/qmake_examples/build_qmake_examples_instructions.yaml
@@ -0,0 +1,31 @@
+type: Group
+instructions:
+ # Only enable building examples if -DQT_BUILD_EXAMPLES=ON was passed to the CMake config in some
+ # form. The variable to check unfortunately depends on host vs target, and qtbase vs non-qtbase.
+ - type: Group
+ instructions:
+ - !include "{{qt/qtbase}}/qmake_examples/build_qmake_examples_inner_instructions.yaml"
+ enable_if:
+ condition: or
+ conditions:
+ # qtbase host case
+ - condition: runtime
+ env_var: CONFIGURE_ARGS
+ contains_value: "QT_BUILD_EXAMPLES=ON"
+ # qtbase target case
+ - condition: runtime
+ env_var: TARGET_CONFIGURE_ARGS
+ contains_value: "QT_BUILD_EXAMPLES=ON"
+ # non-qtbase host case
+ # non-qtbase target case
+ - condition: runtime
+ env_var: COIN_CMAKE_ARGS
+ contains_value: "QT_BUILD_EXAMPLES=ON"
+ # host case
+ - condition: runtime
+ env_var: CONFIGURE_ARGS
+ contains_value: "-make examples"
+ # target case
+ - condition: runtime
+ env_var: TARGET_CONFIGURE_ARGS
+ contains_value: "-make examples"