diff options
author | Florent Revest <revestflo@gmail.com> | 2015-12-20 17:50:25 +0100 |
---|---|---|
committer | Florent Revest <revestflo@gmail.com> | 2015-12-20 23:49:55 +0100 |
commit | cdcf5e8496b51091f9d71a6a52a588a97686c49d (patch) | |
tree | 85cca7aaaa2091798739bb55335edf058f5be4b4 /asteroid-stopwatch | |
parent | b3f803532a7c346d03ab72d7a1e0750e69659d21 (diff) |
Removes the colorful settings and sanitize a little bit the code
Diffstat (limited to '')
-rwxr-xr-x | asteroid-stopwatch | bin | 383590 -> 0 bytes | |||
-rw-r--r--[-rwxr-xr-x] | asteroid-stopwatch.desktop | 4 | ||||
-rw-r--r--[-rwxr-xr-x] | asteroid-stopwatch.pro | 23 |
3 files changed, 10 insertions, 17 deletions
diff --git a/asteroid-stopwatch b/asteroid-stopwatch Binary files differdeleted file mode 100755 index 46b290d..0000000 --- a/asteroid-stopwatch +++ /dev/null diff --git a/asteroid-stopwatch.desktop b/asteroid-stopwatch.desktop index 31845a3..4f80516 100755..100644 --- a/asteroid-stopwatch.desktop +++ b/asteroid-stopwatch.desktop @@ -2,6 +2,6 @@ Type=Application Name=Stopwatch Categories=Applications; -Exec=env QT_QUICK_CONTROLS_STYLE=Nemo /usr/bin/asteroid-stopwatch -Icon=icon-app-texteditor +Exec=env QT_QUICK_CONTROLS_STYLE=Asteroid /usr/bin/asteroid-stopwatch +Icon=clock X-Desktop-File-Install-Version=0.20 diff --git a/asteroid-stopwatch.pro b/asteroid-stopwatch.pro index 4ad802b..387ddf3 100755..100644 --- a/asteroid-stopwatch.pro +++ b/asteroid-stopwatch.pro @@ -1,22 +1,15 @@ TEMPLATE = app -QT += qml quick xml svg +QT += widgets qml quick xml svg QTPLUGIN += qsvg -TARGET = asteroid-stopwatch -target.path = /usr/bin/ - -qtHaveModule(widgets){ - QT += widgets -} - -include(src/src.pri) +SOURCES += main.cpp +RESOURCES += resources.qrc OTHER_FILES += main.qml -RESOURCES += \ - resources.qrc - -INSTALLS += target +TARGET = asteroid-stopwatch +target.path = /usr/bin/ -desktop.path = /usr/share/applications desktop.files = asteroid-stopwatch.desktop -INSTALLS += desktop +desktop.path = /usr/share/applications + +INSTALLS += target desktop |