-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmolecules.pro
76 lines (63 loc) · 1.64 KB
/
molecules.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
TEMPLATE = app
VERSION = 1.1
android {
TARGET = Atomify
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
} else {
TARGET = atomify
}
QT += qml quick widgets opengl openglextensions
CONFIG += c++11
INCLUDEPATH += simulator
SOURCES += main.cpp \
moleculardynamics.cpp \
cpglquads.cpp \
simulator/random.cpp \
simulator/settings.cpp \
simulator/statisticssampler.cpp \
simulator/system.cpp \
simulator/thermostat.cpp \
simulator/unitconverter.cpp \
simulator/simulator.cpp \
simulator/mdio.cpp \
vec3.cpp \
cpglcube.cpp \
moleculardynamicsrenderer.cpp
RESOURCES += qml/qml.qrc \
images.qrc \
fonts.qrc \
simulations/diffusion/diffusion.qrc \
simulations/fun/fun.qrc \
simulations/pressure/pressure.qrc \
simulations/fractures/fractures.qrc
OTHER_FILES += \
android/com/compphys/atomify/AtomifyActivity.java \
android/src/com/compphys/atomify/AtomifyActivity.java
# DEFINES += MD_DEBUG
ios {
QMAKE_INFO_PLIST = iOS.plist
}
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
moleculardynamics.h \
cpglquads.h \
simulator/atom_types.h \
simulator/potential_lennard_jones.h \
simulator/random.h \
simulator/settings.h \
simulator/statisticssampler.h \
simulator/system.h \
simulator/thermostat.h \
simulator/unitconverter.h \
simulator/simulator.h \
simulator/mdio.h \
vec3.h \
cpglcube.h \
moleculardynamicsrenderer.h
OTHER_FILES += \
iOS.plist
OTHER_FILES += \
android/AndroidManifest.xml