-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneuro.pro
60 lines (53 loc) · 1.39 KB
/
neuro.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
#-------------------------------------------------
#
# Project created by QtCreator 2013-06-18T17:13:05
#
#-------------------------------------------------
QT -= gui
TARGET = neuro
TEMPLATE = lib
CONFIG += c++11
DEFINES += NEURO_LIBRARY
SOURCES += Neuron.cpp \
ActivationFunction.cpp \
NeuralLayer.cpp \
NeuralNetwork.cpp \
DataTransformation.cpp \
BipolarStepActivationFunction.cpp \
BinaryStepActivationFunction.cpp \
LogSigmoidActivationFunction.cpp \
TanSigmoidActivationFunction.cpp \
Supervisor.cpp \
ThreadedSupervisor.cpp \
DeltaRuleSupervisor.cpp \
BackpropagationSupervisor.cpp \
GeneticSupervisor.cpp \
RandomSupervisor.cpp \
StochasticSupervisor.cpp \
Random.cpp
HEADERS += Neuron.hpp\
neuro_global.hpp \
ActivationFunction.hpp \
NeuralLayer.hpp \
NeuralNetwork.hpp \
DataTransformation.hpp \
BipolarStepActivationFunction.hpp \
BinaryStepActivationFunction.hpp \
LogSigmoidActivationFunction.hpp \
TanSigmoidActivationFunction.hpp \
Supervisor.hpp \
ThreadedSupervisor.hpp \
DeltaRuleSupervisor.hpp \
BackpropagationSupervisor.hpp \
GeneticSupervisor.hpp \
RandomSupervisor.hpp \
StochasticSupervisor.hpp \
Random.hpp
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}