diff options
author | Mark Brand <mabrand@mabrand.nl> | 2016-06-18 09:31:01 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2016-06-18 09:32:40 (GMT) |
commit | d62f9121c21e2f53d45da95b940df582de1135f8 (patch) | |
tree | 1ce10729b36de56b62c4429284bb63b12674dc8c /src/qtserialbus.mk | |
parent | e64fb04b50a9bc6bfb1e8465d8fafe09c8af4c32 (diff) | |
download | mxe-d62f9121c21e2f53d45da95b940df582de1135f8.zip mxe-d62f9121c21e2f53d45da95b940df582de1135f8.tar.gz mxe-d62f9121c21e2f53d45da95b940df582de1135f8.tar.bz2 |
add new qt5 modules
qtcharts
qtdatavis3d
qtdeclarative-render2d
qtgamepad
qtpurchasing
qtscxml
qtserialbus
qtvirtualkeyboard
https://wiki.qt.io/New_Features_in_Qt_5.7
Diffstat (limited to 'src/qtserialbus.mk')
-rw-r--r-- | src/qtserialbus.mk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/qtserialbus.mk b/src/qtserialbus.mk new file mode 100644 index 0000000..602d0b9 --- /dev/null +++ b/src/qtserialbus.mk @@ -0,0 +1,23 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := qtserialbus +$(PKG)_IGNORE := +$(PKG)_VERSION = $(qtbase_VERSION) +$(PKG)_CHECKSUM := 2c437ace393e9dcf170990b519cec59c5cbcfc3c830e46116abb52549dc15d38 +$(PKG)_SUBDIR = $(subst qtbase,qtserialbus,$(qtbase_SUBDIR)) +$(PKG)_FILE = $(subst qtbase,qtserialbus,$(qtbase_FILE)) +$(PKG)_URL = $(subst qtbase,qtserialbus,$(qtbase_URL)) +$(PKG)_DEPS := gcc qtbase qtserialport + +define $(PKG)_UPDATE + echo $(qtbase_VERSION) +endef + +define $(PKG)_BUILD + # invoke qmake with removed debug options as a workaround for + # https://bugreports.qt-project.org/browse/QTBUG-30898 + cd '$(1)' && '$(PREFIX)/$(TARGET)/qt5/bin/qmake' CONFIG-='debug debug_and_release' + $(MAKE) -C '$(1)' -j '$(JOBS)' + $(MAKE) -C '$(1)' -j 1 install +endef |