From e9cc1eb35ab911928987df270643e8b87ddf898d Mon Sep 17 00:00:00 2001 From: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> Date: Thu, 25 Nov 2021 10:42:01 +0100 Subject: [PATCH] Update error in case fypp preprocessor is not found --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 27c5058c4..6ccd539fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -54,7 +54,7 @@ endif() # --- find preprocessor find_program(FYPP fypp) if(NOT FYPP) - message(FATAL_ERROR "Preprocessor fypp not found!") + message(FATAL_ERROR "Preprocessor fypp not found! Please install fypp following the instructions in https://fypp.readthedocs.io/en/stable/fypp.html#installing") endif() add_subdirectory(src)