mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 00:11:07 +00:00
80038ad936
Split api into 'qt5', 'qt5_qml', and 'qt5_webkit'. This makes it possible to link Qt5 apps more fine grained. Needed by Goa. fixes #4793
18 lines
522 B
Makefile
18 lines
522 B
Makefile
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/qt5)
|
|
|
|
MIRROR_SYMBOLS := src/lib/qt5/genode/api/lib/symbols/libQt5WebChannel \
|
|
src/lib/qt5/genode/api/lib/symbols/libQt5WebEngine \
|
|
src/lib/qt5/genode/api/lib/symbols/libQt5WebEngineCore \
|
|
src/lib/qt5/genode/api/lib/symbols/libQt5WebEngineWidgets \
|
|
|
|
content: $(MIRROR_SYMBOLS)
|
|
|
|
$(MIRROR_SYMBOLS):
|
|
mkdir -p lib/symbols
|
|
cp $(PORT_DIR)/$@ lib/symbols
|
|
|
|
content: LICENSE
|
|
|
|
LICENSE:
|
|
cp $(PORT_DIR)/src/lib/qt5/LICENSE.LGPLv3 $@
|