Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
73b431a9
Commit
73b431a9
authored
Feb 03, 2011
by
Marco Bubke
Browse files
QmlDesigner.NodeInstances: Add breakpad to qmlpuppet
parent
5d53aa14
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/tools/qmlpuppet/main.cpp
View file @
73b431a9
...
...
@@ -38,6 +38,10 @@
#include
<nodeinstanceclientproxy.h>
#ifdef ENABLE_QT_BREAKPAD
#include
<qtsystemexceptionhandler.h>
#endif
int
main
(
int
argc
,
char
*
argv
[])
{
QApplication
application
(
argc
,
argv
);
...
...
@@ -49,6 +53,10 @@ int main(int argc, char *argv[])
QCoreApplication
::
setOrganizationDomain
(
"nokia.com"
);
QCoreApplication
::
setApplicationName
(
"QmlPuppet"
);
#ifdef ENABLE_QT_BREAKPAD
QtSystemExceptionHandler
systemExceptionHandler
;
#endif
new
QmlDesigner
::
NodeInstanceClientProxy
(
&
application
);
return
application
.
exec
();
...
...
src/tools/qmlpuppet/qmlpuppet.pro
View file @
73b431a9
...
...
@@ -14,6 +14,12 @@ include(../../rpath.pri)
include
(..
/../
plugins
/
qmldesigner
/
designercore
/
instances
/
instances
.
pri
)
include
(..
/../
plugins
/
qmldesigner
/
designercore
/
exceptions
/
exceptions
.
pri
)
QT_BREAKPAD_ROOT_PATH
=
$$
(
QT_BREAKPAD_ROOT_PATH
)
!
isEmpty
(
QT_BREAKPAD_ROOT_PATH
)
{
include
(
$$
QT_BREAKPAD_ROOT_PATH
/
qtbreakpad
.
pri
)
}
SOURCES
+=
main
.
cpp
RESOURCES
+=
qmlpuppet
.
qrc
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment