216e1a9f71
Commit the original Caesium 1.7.0 codebase with some adjustment. You can also get the original source at: https://sourceforge.net/projects/caesium/files/1.7.0/ Since the file names listed in the Qt resource file have encoding issue which can cause compile failure, these files get removed. Adjustments: + .gitignore M icons.qrc - *.pro.user(.*) - icons/language/*.png
69 lines
1.4 KiB
Prolog
69 lines
1.4 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2010-12-25T20:14:37
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui network widgets
|
|
|
|
TARGET = Caesium
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
caesium.cpp \
|
|
compressionthread.cpp \
|
|
preferences.cpp \
|
|
qdroptreewidget.cpp \
|
|
about.cpp \
|
|
updater.cpp \
|
|
startupupdater.cpp \
|
|
global.cpp \
|
|
exit.cpp \
|
|
loadpreview.cpp \
|
|
imageresize.cpp
|
|
|
|
HEADERS += caesium.h \
|
|
compressionthread.h \
|
|
preferences.h \
|
|
qdroptreewidget.h \
|
|
about.h \
|
|
updater.h \
|
|
startupupdater.h \
|
|
global.h \
|
|
exit.h \
|
|
loadpreview.h \
|
|
imageresize.h
|
|
|
|
FORMS += caesium.ui \
|
|
preferences.ui \
|
|
about.ui \
|
|
updater.ui \
|
|
exit.ui
|
|
|
|
RESOURCES += \
|
|
icons.qrc
|
|
|
|
RC_FILE = caesium.rc
|
|
|
|
TRANSLATIONS = caesium_en.ts \
|
|
caesium_it.ts \
|
|
caesium_ja.ts \
|
|
caesium_fr.ts \
|
|
caesium_br.ts \
|
|
caesium_de.ts \
|
|
caesium_tw.ts \
|
|
caesium_sv.ts \
|
|
caesium_cn.ts \
|
|
caesium_pt-br.ts \
|
|
caesium_es.ts \
|
|
caesium_kr.ts \
|
|
caesium_gr.ts \
|
|
caesium_ru.ts
|
|
|
|
LIBS += -lQt5Concurrent
|
|
|
|
|
|
|
|
|