mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 22:47:50 +00:00
6a395d9a29
This patch enables experimental QML support in Qt5. Only the QtQuick plugin is available yet. Currently runs best on Linux and has some problems on NOVA and Fiasco.OC. Fixes #979.
39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
QT_DEFINES += -DQT_NO_LIBUDEV -DQT_NO_XCB -DQT_NO_XKBCOMMON -DQT_NO_EXCEPTIONS -DQT_NO_DEBUG -DQT_PLUGIN -DQT_QUICK_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_CORE_LIB
|
|
|
|
QT_INCPATH += \
|
|
qtbase/include \
|
|
qtbase/include/QtCore \
|
|
qtbase/include/QtGui \
|
|
qtbase/include/QtNetwork \
|
|
qtbase/mkspecs/genode-g++ \
|
|
qtdeclarative/include \
|
|
qtdeclarative/include/QtQml \
|
|
qtdeclarative/include/QtQml/5.1.0 \
|
|
qtdeclarative/include/QtQml/5.1.0/QtQml \
|
|
qtdeclarative/include/QtQuick \
|
|
qtdeclarative/include/QtQuick/5.1.0 \
|
|
qtdeclarative/include/QtQuick/5.1.0/QtQuick \
|
|
qtdeclarative/src/imports/qtquick2 \
|
|
|
|
QT_SOURCES += \
|
|
plugin.cpp
|
|
|
|
QT_VPATH += \
|
|
qtdeclarative/src/imports/qtquick2 \
|
|
|
|
# some source files need to be generated by moc from other source/header files before
|
|
# they get #included again by the original source file in the compiling stage
|
|
|
|
# source files generated from existing header files ('moc_%.cpp: %.h' rule in import-qt5.inc)
|
|
# extracted from 'compiler_moc_header_make_all' target
|
|
|
|
COMPILER_MOC_HEADER_MAKE_ALL_FILES = \
|
|
|
|
|
|
# source files generated from existing source files ('%.moc: %.cpp' rule in import-qt5.inc)
|
|
# extracted from 'compiler_moc_source_make_all' rule
|
|
|
|
COMPILER_MOC_SOURCE_MAKE_ALL_FILES = \
|
|
plugin.moc
|
|
|