-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
41 lines (29 loc) · 1.51 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
##---------------------------------------------------------------------------##
## FOOD/CMakeLists.txt
## Stuart R. Slattery
## Tuesday Dec 6 2011
##---------------------------------------------------------------------------##
## TriBITS package file for the FOOD package
##---------------------------------------------------------------------------##
INCLUDE(TribitsPackageMacros)
##---------------------------------------------------------------------------##
## A) Define the package
##---------------------------------------------------------------------------##
TRIBITS_PACKAGE_DECL(FOOD)
##---------------------------------------------------------------------------##
## B) Set up package-specific options
##---------------------------------------------------------------------------##
TRIBITS_ADD_DEBUG_OPTION()
TRIBITS_ADD_SHOW_DEPRECATED_WARNINGS_OPTION()
##---------------------------------------------------------------------------##
## C) Process subpackages
##---------------------------------------------------------------------------##
TRIBITS_PROCESS_SUBPACKAGES()
##---------------------------------------------------------------------------##
## F) Do standard postprocessing
##---------------------------------------------------------------------------##
TRIBITS_PACKAGE_DEF()
TRIBITS_PACKAGE_POSTPROCESS()
##---------------------------------------------------------------------------##
## end of FOOD/CMakeLists.txt
##---------------------------------------------------------------------------##