This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| master_fixed_cxx.O1: file format elf64-x86-64 | |
| Disassembly of section .init: | |
| 0000000000400b30 <_init>: | |
| 400b30: 48 83 ec 08 sub $0x8,%rsp | |
| 400b34: e8 63 01 00 00 callq 400c9c <call_gmon_start> | |
| 400b39: 48 83 c4 08 add $0x8,%rsp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| master_fixed_cxx.O2: file format elf64-x86-64 | |
| Disassembly of section .init: | |
| 0000000000400b30 <_init>: | |
| 400b30: 48 83 ec 08 sub $0x8,%rsp | |
| 400b34: e8 7b 03 00 00 callq 400eb4 <call_gmon_start> | |
| 400b39: 48 83 c4 08 add $0x8,%rsp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| master_fixed_cxx.O3: file format elf64-x86-64 | |
| Disassembly of section .init: | |
| 0000000000400b38 <_init>: | |
| 400b38: 48 83 ec 08 sub $0x8,%rsp | |
| 400b3c: e8 d3 03 00 00 callq 400f14 <call_gmon_start> | |
| 400b41: 48 83 c4 08 add $0x8,%rsp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resources += \ | |
| test.qml \ | |
| test.png \ | |
| QMAKE_POST_LINK = @ | |
| for(t, resources) { | |
| QMAKE_POST_LINK += cp -rv $$PWD/$$t $$OUT_PWD/$$t ; | |
| } | |
| QMAKE_CLEAN += $$resources |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.0 | |
| import QtQuick.Particles 2.0 | |
| Rectangle { | |
| width: 500 | |
| height: 500 | |
| color: "black" | |
| ParticleSystem { | |
| anchors.fill: parent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.0 | |
| Row { | |
| Image { | |
| id: image | |
| width: 200 | |
| height: 200 | |
| source: "usagi-logo.png" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "myitem.hxx" | |
| MyItem::MyItem(QQuickItem *parent): | |
| QQuickItem(parent) | |
| { | |
| // By default, QQuickItem does not draw anything. If you subclass | |
| // QQuickItem to create a visual item, you will need to uncomment the | |
| // following line and re-implement updatePaintNode() | |
| // setFlag(ItemHasContents, true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.0 | |
| import com.mycompany.mycomponents 1.0 | |
| Row { | |
| Rectangle { width: 100; height: 100; } | |
| MyItem { width: 100; height: 100; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plugin untitled /tmp/untitled-build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| int main(){ | |
| #pragma omp parallel for | |
| for(auto a : {0,1,2,3,4,5,6,7,8,9}) | |
| std::cout << a << std::endl; | |
| } |