Rename macro modules

Modules that starts with the prefix "Use" alters the build to enable
something by default, whereas modules that only provide functionality
is not common to start with that prefix.
This commit is contained in:
Roland Kaufmann
2012-12-05 09:34:38 +01:00
parent 88d635524c
commit 0deeef0127
7 changed files with 6 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ set (opm-core_INCLUDE_DIRS "${PROJECT_SOURCE_DIR}")
list (APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/Modules")
# macro to set standard variables (INCLUDE_DIRS, LIBRARIES etc.)
include (UseOpmFind)
include (OpmFind)
# compile with C++0x/11 support if available
find_package (CXX11Features REQUIRED)
@@ -76,7 +76,7 @@ set (HAVE_ERT)
# create configuration header which describes available features
# necessary to compile this library
include (UseConfigVars)
include (ConfigVars)
list (APPEND opm-core_CONFIG_VARS
"HAVE_AGMG"
"HAVE_DUNE_ISTL"