editor/ZiraEditor.pro

227 lines
6.0 KiB
Prolog
Raw Permalink Normal View History

2019-10-09 19:32:44 +02:00
#-------------------------------------------------
#
# Project created by QtCreator 2019-01-28T15:56:10
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
2020-06-29 19:34:07 +02:00
android {
QT += androidextras
}
2019-10-09 19:32:44 +02:00
TARGET = ZiraEditor
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
INCLUDEPATH += include
SOURCES += \
main.cpp \
2020-11-20 14:44:17 +01:00
src/colordialog.cpp \
2020-11-18 16:57:09 +01:00
src/contextdialog.cpp \
2020-03-04 13:35:29 +01:00
src/docktitlebar.cpp \
2020-06-29 23:23:48 +02:00
src/filedialog.cpp \
2020-01-29 18:28:04 +01:00
src/fileiconprovider.cpp \
2020-07-03 22:55:12 +02:00
src/icon.cpp \
2020-11-19 18:21:48 +01:00
src/inputdialog.cpp \
2019-10-09 19:32:44 +02:00
src/mainwindow.cpp \
src/helper.cpp \
2020-11-21 16:40:06 +01:00
src/menudialog.cpp \
2020-11-19 18:21:48 +01:00
src/messagedialog.cpp \
2020-02-20 13:14:52 +01:00
src/progressinfo.cpp \
2020-02-15 12:28:31 +01:00
src/progressline.cpp \
2020-11-19 18:21:48 +01:00
src/questiondialog.cpp \
2020-11-23 21:35:31 +01:00
src/scroller.cpp \
2019-10-09 19:32:44 +02:00
src/settings.cpp \
src/editor.cpp \
src/linenumber.cpp \
src/highlightdata.cpp \
src/highlight.cpp \
src/completepopup.cpp \
src/search.cpp \
src/linemark.cpp \
src/linemap.cpp \
src/highlightwords.cpp \
src/completewords.cpp \
src/editortab.cpp \
src/parserworker.cpp \
src/createfiledialog.cpp \
src/createfolderdialog.cpp \
src/renamedialog.cpp \
2019-10-09 19:32:44 +02:00
src/filebrowser.cpp \
src/editortabs.cpp \
src/parsephp.cpp \
src/parsejs.cpp \
src/parsecss.cpp \
src/parse.cpp \
src/navigator.cpp \
2020-11-29 13:04:52 +01:00
src/shortcutsdialog.cpp \
2020-11-10 12:45:31 +01:00
src/snippets.cpp \
2020-11-23 10:33:38 +01:00
src/spellchecker.cpp \
2020-02-21 22:35:08 +01:00
src/style.cpp \
2020-02-16 13:55:11 +01:00
src/tabslist.cpp \
2020-11-23 10:33:38 +01:00
src/terminal.cpp \
2020-05-31 19:04:54 +02:00
src/terminalinterface.cpp \
2019-10-09 19:32:44 +02:00
src/tooltip.cpp \
src/breadcrumbs.cpp \
src/helpwords.cpp \
src/createprojectdialog.cpp \
src/project.cpp \
src/searchdialog.cpp \
src/git.cpp \
src/servers.cpp \
src/editprojectdialog.cpp \
src/quickaccess.cpp \
src/settingsdialog.cpp \
2019-12-11 23:05:56 +01:00
src/helpdialog.cpp \
2019-12-23 16:38:25 +01:00
src/popup.cpp \
2019-12-24 21:05:29 +01:00
src/gitbrowser.cpp \
2019-12-29 13:50:28 +01:00
src/annotation.cpp \
src/spellcheckerinterface.cpp \
src/plugininterface.cpp \
2020-02-20 15:16:34 +01:00
src/spellwords.cpp \
2020-11-25 21:08:00 +01:00
src/virtualinput.cpp \
2020-02-20 15:16:34 +01:00
src/welcome.cpp
2019-10-09 19:32:44 +02:00
HEADERS += \
2020-11-20 14:44:17 +01:00
include/colordialog.h \
2020-11-18 16:57:09 +01:00
include/contextdialog.h \
2020-03-04 13:35:29 +01:00
include/docktitlebar.h \
2020-06-29 23:23:48 +02:00
include/filedialog.h \
2020-01-29 18:28:04 +01:00
include/fileiconprovider.h \
2020-07-03 22:55:12 +02:00
include/icon.h \
2020-11-19 18:21:48 +01:00
include/inputdialog.h \
2019-10-09 19:32:44 +02:00
include/mainwindow.h \
include/helper.h \
2020-11-21 16:40:06 +01:00
include/menudialog.h \
2020-11-19 18:21:48 +01:00
include/messagedialog.h \
2020-02-20 13:14:52 +01:00
include/progressinfo.h \
2020-02-15 12:28:31 +01:00
include/progressline.h \
2020-11-19 18:21:48 +01:00
include/questiondialog.h \
2020-11-23 21:35:31 +01:00
include/scroller.h \
2019-10-09 19:32:44 +02:00
include/settings.h \
include/editor.h \
include/linenumber.h \
include/highlightdata.h \
include/highlight.h \
include/completepopup.h \
include/search.h \
include/linemark.h \
include/linemap.h \
include/highlightwords.h \
include/completewords.h \
include/editortab.h \
include/parserworker.h \
include/createfiledialog.h \
include/createfolderdialog.h \
include/renamedialog.h \
2019-10-09 19:32:44 +02:00
include/filebrowser.h \
include/editortabs.h \
include/parsephp.h \
include/parsejs.h \
include/parsecss.h \
include/parse.h \
include/navigator.h \
2020-11-29 13:04:52 +01:00
include/shortcutsdialog.h \
2020-11-10 12:45:31 +01:00
include/snippets.h \
2020-11-23 10:33:38 +01:00
include/spellchecker.h \
2020-02-21 22:35:08 +01:00
include/style.h \
2020-02-16 13:55:11 +01:00
include/tabslist.h \
2020-11-23 10:33:38 +01:00
include/terminal.h \
2020-05-31 19:04:54 +02:00
include/terminalinterface.h \
2019-10-09 19:32:44 +02:00
include/tooltip.h \
include/breadcrumbs.h \
include/helpwords.h \
include/createprojectdialog.h \
include/project.h \
include/searchdialog.h \
include/git.h \
include/servers.h \
include/editprojectdialog.h \
include/quickaccess.h \
include/types.h \
include/settingsdialog.h \
2019-12-11 23:05:56 +01:00
include/helpdialog.h \
2019-12-23 16:38:25 +01:00
include/popup.h \
2019-12-24 21:05:29 +01:00
include/gitbrowser.h \
2019-12-29 13:50:28 +01:00
include/annotation.h \
include/spellcheckerinterface.h \
include/plugininterface.h \
2020-02-20 15:16:34 +01:00
include/spellwords.h \
2020-11-25 21:08:00 +01:00
include/virtualinput.h \
2020-02-20 15:16:34 +01:00
include/welcome.h
2019-10-09 19:32:44 +02:00
FORMS += \
2020-11-18 16:57:09 +01:00
ui/contextdialog.ui \
2020-11-19 18:21:48 +01:00
ui/inputdialog.ui \
2019-10-09 19:32:44 +02:00
ui/mainwindow.ui \
ui/createfile.ui \
ui/createfolder.ui \
2020-11-21 16:40:06 +01:00
ui/menudialog.ui \
2020-11-19 18:21:48 +01:00
ui/messagedialog.ui \
ui/questiondialog.ui \
ui/rename.ui \
2019-10-09 19:32:44 +02:00
ui/createproject.ui \
ui/search.ui \
ui/editproject.ui \
ui/settings.ui \
2020-02-20 15:16:34 +01:00
ui/helpdialog.ui \
2020-11-29 13:04:52 +01:00
ui/shortcutsdialog.ui \
2020-02-20 15:16:34 +01:00
ui/welcome.ui
2019-10-09 19:32:44 +02:00
RESOURCES += \
2020-06-26 19:40:42 +02:00
qrc/fonts.qrc \
2019-10-09 19:32:44 +02:00
qrc/highlight.qrc \
qrc/syntax.qrc \
qrc/image.qrc \
qrc/help.qrc \
2019-12-29 13:50:28 +01:00
qrc/style.qrc \
qrc/spell.qrc
2020-01-29 15:58:07 +01:00
2020-06-29 19:34:07 +02:00
equals(QT_MAJOR_VERSION, 5): lessThan(QT_MINOR_VERSION, 13) {
DISTFILES += \
android/Qt5_12/AndroidManifest.xml \
android/Qt5_12/build.gradle \
android/Qt5_12/gradle/wrapper/gradle-wrapper.jar \
android/Qt5_12/gradle/wrapper/gradle-wrapper.properties \
android/Qt5_12/gradlew \
android/Qt5_12/gradlew.bat \
android/Qt5_12/res/values/libs.xml
2020-01-29 15:58:07 +01:00
2020-06-29 19:34:07 +02:00
contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
ANDROID_PACKAGE_SOURCE_DIR = \
$$PWD/android/Qt5_12
}
contains(ANDROID_TARGET_ARCH,arm64-v8a) {
ANDROID_PACKAGE_SOURCE_DIR = \
$$PWD/android/Qt5_12
}
2020-01-29 15:58:07 +01:00
}
2020-06-23 20:41:30 +02:00
2020-06-29 19:34:07 +02:00
equals(QT_MAJOR_VERSION, 5): greaterThan(QT_MINOR_VERSION, 12) {
DISTFILES += \
android/Qt5_14/AndroidManifest.xml \
android/Qt5_14/build.gradle \
android/Qt5_14/gradle/wrapper/gradle-wrapper.jar \
android/Qt5_14/gradle/wrapper/gradle-wrapper.properties \
android/Qt5_14/gradlew \
android/Qt5_14/gradlew.bat \
android/Qt5_14/res/values/libs.xml
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android/Qt5_14
2020-06-23 20:41:30 +02:00
}