-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrandomlib.pro
More file actions
38 lines (34 loc) · 1.25 KB
/
randomlib.pro
File metadata and controls
38 lines (34 loc) · 1.25 KB
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
TEMPLATE = lib
CONFIG += staticlib
include(../config.pri)
INCLUDEPATH += include
SOURCES += \
src/Random.cpp
HEADERS += \
include/RandomLib/RandomType.hpp \
include/RandomLib/RandomSelect.hpp \
include/RandomLib/RandomSeed.hpp \
include/RandomLib/RandomPower2.hpp \
include/RandomLib/RandomNumber.hpp \
include/RandomLib/RandomMixer.hpp \
include/RandomLib/RandomEngine.hpp \
include/RandomLib/RandomCanonical.hpp \
include/RandomLib/RandomAlgorithm.hpp \
include/RandomLib/Random.hpp \
include/RandomLib/NormalDistribution.hpp \
include/RandomLib/MPFRUniform.hpp \
include/RandomLib/MPFRRandom.hpp \
include/RandomLib/MPFRNormalR.hpp \
include/RandomLib/MPFRNormalK.hpp \
include/RandomLib/MPFRNormal.hpp \
include/RandomLib/MPFRExponentialL.hpp \
include/RandomLib/MPFRExponential.hpp \
include/RandomLib/LeadingZeros.hpp \
include/RandomLib/InversePiProb.hpp \
include/RandomLib/InverseEProb.hpp \
include/RandomLib/ExponentialProb.hpp \
include/RandomLib/ExponentialDistribution.hpp \
include/RandomLib/ExactPower.hpp \
include/RandomLib/ExactNormal.hpp \
include/RandomLib/ExactExponential.hpp \
include/RandomLib/Config.h