diff options
author | Ken Moore <ken@ixsystems.com> | 2017-10-13 16:25:18 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-10-13 16:25:18 -0400 |
commit | d04f35ab9b827085d1cbee0bc2f7cae7787557ef (patch) | |
tree | 36a40cc20324aee82f4d2944cb2b54161522491c /src-qt5/src-cpp/Desktop.pri | |
parent | Another checkpoint commit - almost ready to start running tests with QML for ... (diff) | |
download | lumina-d04f35ab9b827085d1cbee0bc2f7cae7787557ef.tar.gz lumina-d04f35ab9b827085d1cbee0bc2f7cae7787557ef.tar.bz2 lumina-d04f35ab9b827085d1cbee0bc2f7cae7787557ef.zip |
Another checkpoint commit for Lumina 2
Almost have the QML-based desktop canvas working - still tracking down some QML syntax issues.
Diffstat (limited to 'src-qt5/src-cpp/Desktop.pri')
-rw-r--r-- | src-qt5/src-cpp/Desktop.pri | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src-qt5/src-cpp/Desktop.pri b/src-qt5/src-cpp/Desktop.pri index c7da397d..dff6646c 100644 --- a/src-qt5/src-cpp/Desktop.pri +++ b/src-qt5/src-cpp/Desktop.pri @@ -1,9 +1,12 @@ QT *= gui qml quick -SOURCES *= RootDesktopObject.cpp +SOURCES *= $${PWD}/RootDesktopObject.cpp \ + $${PWD}/ScreenObject.cpp -HEADERS *= RootDesktopObject.h \ - ScreenObject.h +HEADERS *= $${PWD}/RootDesktopObject.h \ + $${PWD}/ScreenObject.h -include(../src-qml/src-qml.pri) +INCLUDEPATH *= $${PWD} + +include($${PWD}/../src-qml/src-qml.pri) |