2020-08-25 10:05:15 +00:00
|
|
|
include $(call select_from_repositories,lib/import/import-qt5_qmake.mk)
|
|
|
|
|
|
|
|
QT5_PORT_LIBS += libQt5Core libQt5Gui libQt5Network libQt5Widgets
|
2022-08-23 09:14:51 +00:00
|
|
|
QT5_PORT_LIBS += libQt5Qml libQt5QmlModels libQt5Quick
|
2020-08-25 10:05:15 +00:00
|
|
|
|
|
|
|
LIBS = libc libm mesa stdcxx $(QT5_PORT_LIBS)
|
|
|
|
|
|
|
|
built.tag: qmake_prepared.tag
|
|
|
|
|
|
|
|
@#
|
|
|
|
@# run qmake
|
|
|
|
@#
|
|
|
|
|
|
|
|
$(VERBOSE)source env.sh && $(QMAKE) \
|
|
|
|
-qtconf qmake_root/mkspecs/$(QMAKE_PLATFORM)/qt.conf \
|
|
|
|
$(QT_DIR)/qtquickcontrols/qtquickcontrols.pro \
|
|
|
|
$(QT5_OUTPUT_FILTER)
|
|
|
|
|
|
|
|
@#
|
|
|
|
@# build
|
|
|
|
@#
|
|
|
|
|
|
|
|
$(VERBOSE)source env.sh && $(MAKE) sub-src $(QT5_OUTPUT_FILTER)
|
|
|
|
|
|
|
|
@#
|
|
|
|
@# install into local 'install' directory
|
|
|
|
@#
|
|
|
|
|
|
|
|
$(VERBOSE)$(MAKE) INSTALL_ROOT=$(CURDIR)/install sub-src-install_subtargets $(QT5_OUTPUT_FILTER)
|
|
|
|
|
|
|
|
$(VERBOSE)ln -sf .$(CURDIR)/qmake_root install/qt
|
|
|
|
|
|
|
|
@#
|
|
|
|
@# create stripped version
|
|
|
|
@#
|
|
|
|
|
|
|
|
$(VERBOSE)cd $(CURDIR)/install/qt/qml/QtQuick/Controls && $(STRIP) libqtquickcontrolsplugin.lib.so -o libqtquickcontrolsplugin.lib.so.stripped
|
|
|
|
|
|
|
|
@#
|
|
|
|
@# create symlinks in 'bin' directory
|
|
|
|
@#
|
|
|
|
|
|
|
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/QtQuick/Controls/libqtquickcontrolsplugin.lib.so.stripped $(PWD)/bin/libqtquickcontrolsplugin.lib.so
|
|
|
|
|
|
|
|
@#
|
|
|
|
@# create symlinks in 'debug' directory
|
|
|
|
@#
|
|
|
|
|
|
|
|
$(VERBOSE)ln -sf $(CURDIR)/install/qt/qml/QtQuick/Controls/libqtquickcontrolsplugin.lib.so $(PWD)/debug/
|
|
|
|
|
|
|
|
@#
|
|
|
|
@# create tar archives
|
|
|
|
@#
|
|
|
|
|
|
|
|
$(VERBOSE)tar chf $(PWD)/bin/qt5_quickcontrols_qml.tar --exclude='*.lib.so' --transform='s/\.stripped//' -C install qt/qml
|
|
|
|
|
|
|
|
@#
|
|
|
|
@# mark as done
|
|
|
|
@#
|
|
|
|
|
|
|
|
$(VERBOSE)touch $@
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(called_from_lib_mk),yes)
|
|
|
|
all: built.tag
|
|
|
|
endif
|