##// END OF EJS Templates
add Qt sdk build to bamboo
add Qt sdk build to bamboo

File last commit:

r2229:bee551388900
r2248:7c5eed9adb85
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
Marek Rosa
Added simple demoLauncher application
r2229 #include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}