]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/test/qt5/qtquick.qml
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / tools / build / test / qt5 / qtquick.qml
1 // (c) Copyright Juergen Hunold 2012
2 // Use, modification and distribution is subject to the Boost Software
3 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5
6 import QtQuick 2.0
7
8 Rectangle {
9 id: page
10 width: 400; height: 200
11 color: "#d6d6d6"
12 Text {
13 id: helloText
14 text: "Boost.Build built!"
15 color: "darkgray"
16 anchors.horizontalCenter: page.horizontalCenter
17 anchors.verticalCenter: page.verticalCenter
18 font.pointSize: 30; font.italic: true ; font.bold: true
19 }
20 }