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

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

Former-commit-id: f1f52237
parent 379584a3
No related branches found
No related tags found
No related merge requests found
......@@ -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