-
Notifications
You must be signed in to change notification settings - Fork 1
/
ImageProcessingTestbed.pro
63 lines (50 loc) · 1.43 KB
/
ImageProcessingTestbed.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#-------------------------------------------------
#
# Project created by QtCreator 2015-04-23T15:56:24
#
#-------------------------------------------------
QT += core gui script scripttools
qtHaveModule(printsupport): QT += printsupport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ImageProcessingTestbed
TEMPLATE = app
VERSION = 0.0.1
SOURCES += src/main.cpp \
src/mainwindow.cpp \
src/historycommands.cpp \
src/Algorithms/alg_defaulteffects.cpp \
src/variablesettings.cpp \
src/settingsdialog.cpp \
ScriptEditor/scripteditor.cpp \
ScriptEditor/highlighter.cpp \
src/scriptrunner.cpp \
src/scriptmanager.cpp \
src/scriptsaver.cpp
HEADERS += src/mainwindow.h \
src/enums.h \
src/historycommands.h \
src/Algorithms/alg_defaulteffects.h \
src/variablesettings.h \
src/settingsdialog.h \
ScriptEditor/scripteditor.h \
ScriptEditor/highlighter.h \
src/scriptrunner.h \
src/scriptingconstants.h \
src/scriptmanager.h \
src/scriptsaver.h
RESOURCES = src/icons.qrc \
ScriptEditor/completer.qrc
INCLUDEPATH += $$PWD/src/Algorithms/
#OTHER_FILES += \
# etc/* \
# ext/* \
# logs/*
include(DoubleViewport/doubleviewport.pri)
#if mac
#ICON = logo.icns
#if win
#win32:RC_ICONS += logo.ico
FORMS += \
src/settingsdialog.ui \
src/scriptsaver.ui
QMAKE_CXXFLAGS += -std=c++11 # I use lamdas instead of mapping. For msvc I think it is -std=c++0x.