Commit f968d492 authored by Ederson de Souza's avatar Ederson de Souza Committed by Benjamin Cabé
Browse files

cmake/emu: Use environment variable value on message about it



A message about not finding simics at SIMICS_PROJECT env var was not
showing the current value of said variable.

Signed-off-by: default avatarEderson de Souza <ederson.desouza@intel.com>
parent 21c1a9ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ find_program(
  )

if(SIMICS STREQUAL SIMICS-NOTFOUND)
  message(WARNING "Simics simulator environment is not found at SIMICS_PROJECT:'${SIMICS_PROJECT}'")
  message(WARNING "Simics simulator environment is not found at SIMICS_PROJECT:'$ENV{SIMICS_PROJECT}'")
else()
  message(STATUS "Found Simics: ${SIMICS}")