Skip to content

Commit

Permalink
doc(cmake): improved error message
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed Jan 9, 2024
1 parent f08bd3f commit 4265f32
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ else()
if(NOT LLVM_FOUND)
find_package(LLVM 11.1 CONFIG QUIET)
if(NOT LLVM_FOUND)
message(FATAL_ERROR "No supported LLVM Version found. Version 11.0 or 11.1 required!")
message(FATAL_ERROR "\
No supported LLVM Version found. \
Version 11.0 or 11.1 required! \
If a supported LLVM Version is installed, consider specifying the -DLLVM_DIST_PATH flag. \
For more information, please refer to https://discopop-project.github.io/discopop/setup/discopop. \
")
endif()
endif()
endif()
Expand Down

0 comments on commit 4265f32

Please sign in to comment.