-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
58 lines (45 loc) · 972 Bytes
/
CMakeLists.txt
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
#
# A) Define the package
#
TRIBITS_PACKAGE(Komplex)
#
# B) Set up package-specific options
#
# ...
#
# C) Add the libraries, tests, and examples
#
ADD_SUBDIRECTORY(src)
TRIBITS_ADD_TEST_DIRECTORIES(test)
#TRIBITS_ADD_EXAMPLE_DIRECTORIES(example)
#
# Exclude files for source package.
#
TRIBITS_EXCLUDE_FILES(
doc/Komplex.*.vsd
doc/header.tex
doc/komplex.eps
doc/komplex.gif
doc/komplex_user_guide.ps
example/komplex_hb/README
example/komplex_hb/blassm.f
example/komplex_hb/create_vbr.c
example/komplex_hb/distrib_.*_matrix.c
example/komplex_hb/formats.f
example/komplex_hb/iohb.*
example/komplex_hb/main.c
example/komplex_hb/prototypes.h
example/komplex_hb/read_.*
example/komplex_hb/sc.*
example/komplex_hb/smsrres.c
example/komplex_hb/svbrres.c
example/komplex_hb/unary.f
example/komplex_hb/write_vec.c
src/new
src/stamp-h.in
test/definition
)
#
# D) Do standard postprocessing
#
TRIBITS_PACKAGE_POSTPROCESS()