Removed explicit Windows llibraries from project. Fuel builds fine without them FossilOrigin-Name: 62c1fa8d4fe11e8584af13b70bea5084ad2bd0fb
44 lines
705 B
Prolog
44 lines
705 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2011-08-01T00:17:18
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
TARGET = Fuel
|
|
TEMPLATE = app
|
|
|
|
# OSX Icon
|
|
ICON = icons/fuel.icns
|
|
|
|
# Win Icon
|
|
RC_FILE = fuel.rc
|
|
|
|
SOURCES += main.cpp\
|
|
MainWindow.cpp \
|
|
CommitDialog.cpp \
|
|
FileActionDialog.cpp \
|
|
SettingsDialog.cpp \
|
|
Utils.cpp \
|
|
FileTableView.cpp \
|
|
CloneDialog.cpp
|
|
|
|
HEADERS += MainWindow.h \
|
|
CommitDialog.h \
|
|
FileActionDialog.h \
|
|
SettingsDialog.h \
|
|
Utils.h \
|
|
FileTableView.h \
|
|
CloneDialog.h
|
|
|
|
FORMS += MainWindow.ui \
|
|
CommitDialog.ui \
|
|
FileActionDialog.ui \
|
|
SettingsDialog.ui \
|
|
CloneDialog.ui
|
|
|
|
RESOURCES += \
|
|
resources.qrc
|
|
|