-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
40 lines (28 loc) · 1.5 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
##---------------------------------------------------------------------------##
## HMCSA/CMakeLists.txt
## Stuart R. Slattery
##---------------------------------------------------------------------------##
## TriBITS package file for the HMCSA package
##---------------------------------------------------------------------------##
INCLUDE(TribitsPackageMacros)
##---------------------------------------------------------------------------##
## A) Define the package
##---------------------------------------------------------------------------##
TRIBITS_PACKAGE_DECL(HMCSA)
##---------------------------------------------------------------------------##
## 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 HMCSA/CMakeLists.txt
##---------------------------------------------------------------------------##