Skip to content
This repository has been archived by the owner on Oct 30, 2021. It is now read-only.

Commit

Permalink
new engine
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Jun 13, 2013
1 parent a478178 commit 0d46d3d
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions src/gui/svgcleaner-gui.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
QT += core gui svg
TEMPLATE = app
unix:TARGET = svgcleaner-gui
windows:TARGET = SVGCleaner

SOURCES += main.cpp \
thumbwidget.cpp \
mainwindow.cpp \
cleanerthread.cpp \
someutils.cpp \
itemwidget.cpp \
aboutdialog.cpp \
lineedit.cpp \
wizarddialog.cpp \
iconswidget.cpp \
filefinder.cpp

HEADERS += thumbwidget.h \
mainwindow.h \
cleanerthread.h \
arguments.h \
someutils.h \
itemwidget.h \
aboutdialog.h \
lineedit.h \
wizarddialog.h \
iconswidget.h \
filefinder.h

FORMS += thumbwidget.ui \
mainwindow.ui \
aboutdialog.ui \
wizarddialog.ui

RESOURCES += ../../icons/icons.qrc
CODECFORSRC = UTF-8
windows:RC_FILE = ../../icons/icon.rc

include(../../translations/translations.pri)

unix { # // FIXME move to .pri
isEmpty (PREFIX):PREFIX = /usr

INSTALLS += target desktop logo script presets translations

desktop.path = $$PREFIX/share/applications
desktop.files += svgcleaner.desktop

logo.path = $$PREFIX/share/icons/hicolor/scalable/apps
logo.files += icons/svgcleaner.svg

presets.path = $$PREFIX/share/svgcleaner/presets
presets.files += presets/Soft.preset \
presets/Normal.preset \
presets/Optimal.preset

translations.path = $$PREFIX/share/svgcleaner/translations
translations.files += svgcleaner_cs.qm \
svgcleaner_ru.qm \
svgcleaner_uk.qm \
svgcleaner_de.qm

script.path = $$PREFIX/bin
script.files += ../../src/cli/svgcleaner-cli

target.path = $$PREFIX/bin
}

0 comments on commit 0d46d3d

Please sign in to comment.