diff options
Diffstat (limited to 'src/qt.mk')
-rw-r--r-- | src/qt.mk | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -37,7 +37,7 @@ define $(PKG)_BUILD -script \ -no-iconv \ -opengl desktop \ - -webkit \ + -no-webkit \ -no-glib \ -no-gstreamer \ -no-phonon \ @@ -71,6 +71,12 @@ define $(PKG)_BUILD $(INSTALL) -m755 '$(1)/bin/uic' '$(PREFIX)/bin/$(TARGET)-uic' $(INSTALL) -m755 '$(1)/bin/qmake' '$(PREFIX)/bin/$(TARGET)-qmake' + cd '$(1)/tools/assistant' && '$(1)/bin/qmake' assistant.pro + $(MAKE) -C '$(1)/tools/assistant' -j '$(JOBS)' install + + cd '$(1)/tools/designer' && '$(1)/bin/qmake' designer.pro + $(MAKE) -C '$(1)/tools/designer' -j '$(JOBS)' install + # at least some of the qdbus tools are useful on target cd '$(1)/tools/qdbus' && '$(1)/bin/qmake' qdbus.pro $(MAKE) -C '$(1)/tools/qdbus' -j '$(JOBS)' install |