-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
68 lines (56 loc) · 1.2 KB
/
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
59
60
61
62
63
64
65
66
67
68
INCLUDE(DualScopeSet)
#
# A) Define the package
#
TRIBITS_PACKAGE(WebTrilinos DISABLE_CIRCULAR_REF_DETECTION_FAILURE)
#
# B) Set up package-specific options
#
#
# C) Add the libraries, tests, and examples
#
ADD_SUBDIRECTORY(c++)
#
# Exclude files for source package.
#
TRIBITS_EXCLUDE_AUTOTOOLS_FILES()
#TRIBITS_EXCLUDE_FILES(
# util
# etc
# test/tmp
# doc/UsersGuide
# doc/DevelopersGuide
# doc/MLAPI
# python
# doc/DoxyfileWeb
# doc/build_docs
# doc/ml-logo.eps
# doc/ml-logo.jpg
# doc/sc2000.ps.gz
# examples/Makefile-common.include
# examples/Maxwell/ml_periodic_max.c
# examples/Other/ml_read_complexmaxwell.c
# examples/Other/ml_read_maxwell.c
# examples/Other/ml_star2d.c
# examples/Other/new_readex.c
# examples/Other/oldml_readex.c
# examples/Other/seg_readex.c
# examples/README.AddingExamples
# examples/RefMaxwell
# examples/RefMaxwell/rpc.cpp
# src/Coarsen/README
# src/Main/ml_v_cycle.c
# src/Smoother/README
# src/Utils/jmpilib.c
# src/Utils/jostle.h
# src/Utils/ml_vampir.c
# src/Utils/tumi.c
# test/README.runtests
# test/Zoltan/cxx_main_simple.cpp
# test/scripts
# test/scripts/run-tests.sh
# )
#
# D) Do standard postprocessing
#
TRIBITS_PACKAGE_POSTPROCESS()