mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Supporting backwards compatibility with FREERTOS_CONFIG_FILE_DIRECTORY (#571)
This commit is contained in:
parent
f6b7bd6553
commit
5287c01b3d
|
@ -13,6 +13,8 @@ cmake_minimum_required(VERSION 3.15)
|
||||||
|
|
||||||
# `freertos_config` target defines the path to FreeRTOSConfig.h and optionally other freertos based config files
|
# `freertos_config` target defines the path to FreeRTOSConfig.h and optionally other freertos based config files
|
||||||
if(NOT TARGET freertos_config )
|
if(NOT TARGET freertos_config )
|
||||||
|
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 target not specified. Please specify a cmake target that defines the include directory for FreeRTOSConfig.h:\n"
|
||||||
" add_library(freertos_config INTERFACE)\n"
|
" add_library(freertos_config INTERFACE)\n"
|
||||||
" target_include_directories(freertos_config SYSTEM\n"
|
" target_include_directories(freertos_config SYSTEM\n"
|
||||||
|
@ -21,6 +23,26 @@ if(NOT TARGET freertos_config )
|
||||||
" target_compile_definitions(freertos_config\n"
|
" target_compile_definitions(freertos_config\n"
|
||||||
" PUBLIC\n"
|
" PUBLIC\n"
|
||||||
" projCOVERAGE_TEST=0)\n")
|
" projCOVERAGE_TEST=0)\n")
|
||||||
|
else()
|
||||||
|
message(WARNING " Using deprecated 'FREERTOS_CONFIG_FILE_DIRECTORY' - please update your project CMakeLists.txt file:\n"
|
||||||
|
" add_library(freertos_config INTERFACE)\n"
|
||||||
|
" target_include_directories(freertos_config SYSTEM\n"
|
||||||
|
" INTERFACE\n"
|
||||||
|
" include) # The config file directory\n"
|
||||||
|
" target_compile_definitions(freertos_config\n"
|
||||||
|
" PUBLIC\n"
|
||||||
|
" projCOVERAGE_TEST=0)\n")
|
||||||
|
# Currently will add this in here.
|
||||||
|
add_library(freertos_config INTERFACE)
|
||||||
|
target_include_directories(freertos_config SYSTEM
|
||||||
|
INTERFACE
|
||||||
|
${FREERTOS_CONFIG_FILE_DIRECTORY}
|
||||||
|
)
|
||||||
|
target_compile_definitions(freertos_config
|
||||||
|
PUBLIC
|
||||||
|
projCOVERAGE_TEST=0
|
||||||
|
)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Heap number or absolute path to custom heap implementation provided by user
|
# Heap number or absolute path to custom heap implementation provided by user
|
||||||
|
|
Loading…
Reference in a new issue