# Compile and install enabled bundled features:
#
-MESSAGE(STATUS "Setup bundled features")
+MESSAGE(STATUS "Setting up bundled features")
IF(FEATURE_BOOST_BUNDLED_CONFIGURED)
ENDIF()
-MESSAGE(STATUS "Setup bundled features - Done")
+MESSAGE(STATUS "Setting up bundled features - Done")
# two distinct set ups.
#
-MESSAGE(STATUS "Setup project configuration")
+MESSAGE(STATUS "Setting up project configuration")
#
# Read in auxiliary include directories for the build directory
)
ENDIF()
-MESSAGE(STATUS "Setup project configuration - Done")
+MESSAGE(STATUS "Setting up project configuration - Done")
)
IF(DEAL_II_COMPONENT_COMPAT_FILES)
- MESSAGE(STATUS "Setup compat_files")
+ MESSAGE(STATUS "Setting up compat_files")
#
# Also build and install the old dependency_resolution executable:
DESTINATION ${DEAL_II_COMMON_RELDIR}/scripts
COMPONENT compat_files
)
- MESSAGE(STATUS "Setup compat_files - Done")
+ MESSAGE(STATUS "Setting up compat_files - Done")
ENDIF()
## ---------------------------------------------------------------------
#
-# Setup cached variables (prior to the PROJECT(deal.II) call)
+# Set up cached variables (prior to the PROJECT(deal.II) call)
#
# This file sets up the following cached Options:
#
#
MESSAGE(STATUS "")
-MESSAGE(STATUS "Set up cached variables.")
+MESSAGE(STATUS "Setting up cached variables.")
########################################################################
)
OPTION(DEAL_II_ALLOW_AUTODETECTION
- "Allow to automatically setup features by setting all undefined DEAL_II_WITH_* variables to ON or OFF"
+ "Allow to automatically set up features by setting all undefined DEAL_II_WITH_* variables to ON or OFF"
ON
)
# *Hooray* We are allowed to set compiler flags :-]
#
MESSAGE(STATUS "")
- MESSAGE(STATUS "Set up default compiler flags.")
+ MESSAGE(STATUS "Setting up default compiler flags.")
#
# General setup for GCC and compilers sufficiently close to GCC:
SET_IF_EMPTY(MAKEOPTS $ENV{MAKEOPTS})
MESSAGE(STATUS "")
-MESSAGE(STATUS "Setup testsuite with TEST_DIR ${TEST_DIR}")
+MESSAGE(STATUS "Testsuite will be set up with TEST_DIR=${TEST_DIR}")
ADD_SUBDIRECTORY(
${CMAKE_SOURCE_DIR}/tests/quick_tests
-- ${MAKEOPTS}
)
-MESSAGE(STATUS "Setup testsuite")
+MESSAGE(STATUS "Setting up testsuite")
#
# Provide custom targets to setup and prune the testsuite subproject:
)
ENDIF()
ENDFOREACH()
-MESSAGE(STATUS "Setup testsuite - Done")
+MESSAGE(STATUS "Setting up testsuite - Done")
MESSAGE(STATUS "Regenerating testsuite subprojects")
EXECUTE_PROCESS(
## ---------------------------------------------------------------------
IF(DEAL_II_COMPONENT_MESH_CONVERTER)
- MESSAGE(STATUS "Setup mesh_converter")
+ MESSAGE(STATUS "Setting up mesh_converter")
ADD_SUBDIRECTORY(mesh_conversion)
- MESSAGE(STATUS "Setup mesh_converter - Done")
+ MESSAGE(STATUS "Setting up mesh_converter - Done")
ENDIF()
IF(DEAL_II_COMPONENT_PARAMETER_GUI)
- MESSAGE(STATUS "Setup parameter_gui")
+ MESSAGE(STATUS "Setting up parameter_gui")
ADD_SUBDIRECTORY(parameter_gui)
- MESSAGE(STATUS "Setup parameter_gui - Done")
+ MESSAGE(STATUS "Setting up parameter_gui - Done")
ENDIF()
#
IF(DEAL_II_COMPONENT_DOCUMENTATION)
- MESSAGE(STATUS "Setup documentation")
+ MESSAGE(STATUS "Setting up documentation")
ADD_SUBDIRECTORY(doxygen)
COMPONENT documentation
)
- MESSAGE(STATUS "Setup documentation - Done")
+ MESSAGE(STATUS "Setting up documentation - Done")
ENDIF(DEAL_II_COMPONENT_DOCUMENTATION)
## ---------------------------------------------------------------------
IF(DEAL_II_COMPONENT_EXAMPLES)
- MESSAGE(STATUS "Setup examples")
+ MESSAGE(STATUS "Setting up examples")
INSTALL(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/
DESTINATION ${DEAL_II_EXAMPLES_RELDIR}
PATTERN "untitled.msh" # step-49
)
- MESSAGE(STATUS "Setup examples - Done")
+ MESSAGE(STATUS "Setting up examples - Done")
ENDIF()
##
## ---------------------------------------------------------------------
-MESSAGE(STATUS "Setup library")
+MESSAGE(STATUS "Setting up library")
#
# Compile the deal.II library
COMPONENT library
)
-MESSAGE(STATUS "Setup library - Done")
+MESSAGE(STATUS "Setting up library - Done")
# Use the first available build type (this prefers debug mode if available):
LIST(GET DEAL_II_BUILD_TYPES 0 _mybuild)
-MESSAGE(STATUS "Setup quick_tests in ${_mybuild} mode")
+MESSAGE(STATUS "Setting up quick_tests in ${_mybuild} mode")
SET(ALL_TESTS) # clean variable
)
ADD_DEPENDENCIES(test build_library)
-MESSAGE(STATUS "Setup quick_tests in ${_mybuild} mode - Done")
+MESSAGE(STATUS "Setting up quick_tests in ${_mybuild} mode - Done")