forked from uyras/partsEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PartsEngine.pro
80 lines (69 loc) · 1.52 KB
/
PartsEngine.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#-------------------------------------------------
#
# Project created by QtCreator 2014-01-31T10:01:07
# For MPI version needs to write `qmake PartsEngine.pro "MODES=mpi"` in console.
#
#-------------------------------------------------
TARGET = PartsEngine
QT += core
SUBDIRS += tests
QT -= gui
SOURCES += Vect.cpp \
config.cpp \
Part.cpp \
distributionLaw.cpp \
statemachinebase.cpp \
PartArray.cpp \
StateMachine.cpp \
StateMachineFree.cpp \
squarespinicearray.cpp \
squarespinicecell.cpp \
wanglandau.cpp \
honeycombspinicearray.cpp \
honeycombspinicecell.cpp \
squarelattice.cpp \
amorphousarray.cpp \
loadhelper.cpp \
savehelper.cpp \
squareisinglattice.cpp \
clustermachine.cpp \
dos2.cpp \
dos3.cpp \
random.cpp
HEADERS += \
Vect.h \
random.h \
Part.h \
statemachinebase.h \
StateMachine.h \
StateMachineFree.h \
PartArray.h \
config.h \
squarespinicecell.h \
squarespinicearray.h \
honeycombspinicecell.h \
honeycombspinicearray.h \
squarelattice.h \
distributionLaw.h \
wanglandau.h \
amorphousarray.h \
loadhelper.h \
savehelper.h \
squareisinglattice.h \
clustermachine.h \
dos2.h \
dos3.h \
utils.h \
brickworka.h \
brickworkc.h
TEMPLATE = lib
CONFIG += staticlib
DESTDIR = $$PWD
OTHER_FILES += \
README.md \
.gitignore
CONFIG += c++11
CONFIG(release,debug|release){
DEFINES += QT_NO_DEBUG_OUTPUT
}
DEFINES += _USE_MATH_DEFINES