mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
82a57a10e7
Fixes #4589
63 lines
1.5 KiB
Makefile
63 lines
1.5 KiB
Makefile
include $(call select_from_repositories,lib/import/import-qt5_qmake.mk)
|
|
|
|
QT5_PORT_LIBS += libQt5Core libQt5Gui libQt5Network
|
|
QT5_PORT_LIBS += libQt5Qml libQt5QmlModels libQt5Quick
|
|
|
|
LIBS = libc libm mesa stdcxx $(QT5_PORT_LIBS)
|
|
|
|
INSTALL_LIBS = qml/QtGraphicalEffects/libqtgraphicaleffectsplugin.lib.so \
|
|
qml/QtGraphicalEffects/private/libqtgraphicaleffectsprivate.lib.so
|
|
|
|
built.tag: qmake_prepared.tag
|
|
|
|
@#
|
|
@# run qmake
|
|
@#
|
|
|
|
$(VERBOSE)source env.sh && $(QMAKE) \
|
|
-qtconf qmake_root/mkspecs/$(QMAKE_PLATFORM)/qt.conf \
|
|
$(QT_DIR)/qtgraphicaleffects/qtgraphicaleffects.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
|
|
|
|
@#
|
|
@# strip libs and create symlinks in 'bin' and 'debug' directories
|
|
@#
|
|
|
|
for LIB in $(INSTALL_LIBS); do \
|
|
cd $(CURDIR)/install/qt/$$(dirname $${LIB}) && \
|
|
$(STRIP) $$(basename $${LIB}) -o $$(basename $${LIB}).stripped; \
|
|
ln -sf $(CURDIR)/install/qt/$${LIB}.stripped $(PWD)/bin/$$(basename $${LIB}); \
|
|
ln -sf $(CURDIR)/install/qt/$${LIB} $(PWD)/debug/; \
|
|
done
|
|
|
|
@#
|
|
@# create tar archives
|
|
@#
|
|
|
|
$(VERBOSE)tar chf $(PWD)/bin/qt5_graphicaleffects_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
|