Skip to content
Snippets Groups Projects
Commit f1f52237 authored by Oleg Kuprash's avatar Oleg Kuprash
Browse files

Print a reminder message to set up the environment when calling cmake

parent e8d6b2b4
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
......@@ -66,3 +66,14 @@ install( FILES ${CMAKE_BINARY_DIR}/${ATLAS_PLATFORM}/env_setup.sh
# Set up CPack:
atlas_cpack_setup()
# Remind to set up the environment
string(ASCII 27 Esc)
set(ColourReset "${Esc}[m")
set(BoldRed "${Esc}[1;31m")
set(ColourBold "${Esc}[1m")
message( STATUS "${ColourBold}")
message( STATUS " In order to test your updates, please don't forget to" )
message( STATUS " set up the environment with e.g.:" )
message( STATUS " ---> ${BoldRed}source x86_64-slc6-gcc62-opt/setup.sh${ColourReset}" )
message( STATUS "")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment