Skip to content
Snippets Groups Projects
Commit 451cb9ed authored by Médéric Fourmy's avatar Médéric Fourmy
Browse files

hotfix: typo in if else statement of Findcsm.cmake

parent 4457f124
No related branches found
No related tags found
2 merge requests!30Release after RAL,!29After 2nd RAL submission
......@@ -47,7 +47,7 @@ macro(csm_report_not_found REASON_MSG)
# FindPackage() use the camelcase library name, not uppercase.
if (csm_FIND_QUIETLY)
message(STATUS "Failed to find csm- " ${REASON_MSG} ${ARGN})
else (csm_FIND_REQUIRED)
elseif (csm_FIND_REQUIRED)
message(FATAL_ERROR "Failed to find csm - " ${REASON_MSG} ${ARGN})
else()
# Neither QUIETLY nor REQUIRED, use SEND_ERROR which emits an error
......
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