forked from CASL/Futility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectName.cmake
21 lines (17 loc) · 1.01 KB
/
ProjectName.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++!
# Futility Development Group !
# All rights reserved. !
# !
# Futility is a jointly-maintained, open-source project between the University !
# of Michigan and Oak Ridge National Laboratory. The copyright and license !
# can be found in LICENSE.txt in the head directory of this repository. !
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++!
SET(PROJECT_NAME Futility)
INCLUDE(cmake/Project_Common.cmake)
# Put in hard disables for excluded packages
FOREACH(EXCLUDED_PACKAGE ${${PROJECT_NAME}_EXCLUDE_PACKAGES})
SET(${PROJECT_NAME}_ENABLE_${EXCLUDED_PACKAGE} OFF CACHE BOOL
"Disabled in Futility ProjectName.cmake"
${FORCE_EXCLUDED_PACKAGE_DISABLE}
)
ENDFOREACH()