-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQtEvoPic.pro
50 lines (50 loc) · 958 Bytes
/
QtEvoPic.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
CONFIG += debug
CONFIG -= release
TEMPLATE = app
TARGET = QtEvoPic
QT += core \
gui
HEADERS += PairGenerator.h \
Pixel.h \
ImageComputation.h \
QtEvoPic.h \
GUI.h \
Config.h \
Exceptions.h \
QtImageImp.h \
Organism.h \
ImageImp.h \
TargetImage.h \
PhenotypeImage.h \
Image.h \
Gene.h \
QtFactory.h \
Factory.h \
QtGeneticAlgorithm.h \
GeneticAlgorithm.h \
memory/ObjectPool.h
SOURCES += PairGenerator.cpp \
ImageComputation.cpp \
QtGeneticAlgorithm.cpp \
QtEvoPic.cpp \
GUI.cpp \
Config.cpp \
QtImageImp.cpp \
Organism.cpp \
ImageImp.cpp \
TargetImage.cpp \
PhenotypeImage.cpp \
Image.cpp \
Gene.cpp \
QtFactory.cpp \
Factory.cpp \
GeneticAlgorithm.cpp \
Main.cpp
FORMS += QtEvoPic.ui \
QtEvoPic.ui
LIBS += -lboost_thread-mt
DEFINES += QT_YES
RESOURCES +=
QMAKE_CFLAGS+=-pg
QMAKE_CXXFLAGS+=-pg
QMAKE_LFLAGS+=-pg