help messages extended with

This commit is contained in:
Wiesner András 2024-05-23 20:04:01 +02:00
parent 934ba2b52d
commit e85a905817

View File

@ -19,12 +19,12 @@ cmake_minimum_required(VERSION 3.15)
if(NOT TARGET freertos_config_${FREERTOS_TAG} )
if (NOT DEFINED FREERTOS_CONFIG_FILE_DIRECTORY )
message(FATAL_ERROR " freertos_config target not specified. Please specify a cmake target that defines the include directory for FreeRTOSConfig.h:\n"
message(FATAL_ERROR " freertos_config_${FREERTOS_TAG} target not specified. Please specify a cmake target that defines the include directory for FreeRTOSConfig.h:\n"
" add_library(freertos_config INTERFACE)\n"
" target_include_directories(freertos_config SYSTEM\n"
" target_include_directories(freertos_config_${FREERTOS_TAG} SYSTEM\n"
" INTERFACE\n"
" include) # The config file directory\n"
" target_compile_definitions(freertos_config\n"
" target_compile_definitions(freertos_config_${FREERTOS_TAG}\n"
" PUBLIC\n"
" projCOVERAGE_TEST=0)\n")
else()