summaryrefslogtreecommitdiff
path: root/src/buildstream/plugins/elements/qmake.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/plugins/elements/qmake.yaml')
-rw-r--r--src/buildstream/plugins/elements/qmake.yaml50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/buildstream/plugins/elements/qmake.yaml b/src/buildstream/plugins/elements/qmake.yaml
deleted file mode 100644
index 4ac31932e..000000000
--- a/src/buildstream/plugins/elements/qmake.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-# QMake default configuration
-
-variables:
-
- qmake: qmake -makefile %{conf-root}
- make: make
- make-install: make -j1 INSTALL_ROOT="%{install-root}" install
-
- # Set this if the sources cannot handle parallelization.
- #
- # notparallel: True
-
-config:
-
- # Commands for configuring the software
- #
- configure-commands:
- - |
- %{qmake}
-
- # Commands for building the software
- #
- build-commands:
- - |
- %{make}
-
- # Commands for installing the software into a
- # destination folder
- #
- install-commands:
- - |
- %{make-install}
-
- # Commands for stripping debugging information out of
- # installed binaries
- #
- strip-commands:
- - |
- %{strip-binaries}
-
-# Use max-jobs CPUs for building and enable verbosity
-environment:
- MAKEFLAGS: -j%{max-jobs}
- V: 1
-
-# And dont consider MAKEFLAGS or V as something which may
-# affect build output.
-environment-nocache:
-- MAKEFLAGS
-- V