Release 6.2.0

This commit is contained in:
Tiejun Zhou
2022-10-26 23:43:27 +00:00
parent 2f639bac26
commit 8b3a8293ce
5 changed files with 80 additions and 67 deletions
+6
View File
@@ -6,6 +6,7 @@ project(levelx
)
option(LX_STANDALONE_ENABLE "Enable LevelX in standalone mode" OFF)
option(LX_ENABLE_FILE_SERVERS "Includes a dependency on FileX" ON)
if(NOT DEFINED THREADX_ARCH)
message(FATAL_ERROR "Error: THREADX_ARCH not defined")
@@ -25,6 +26,11 @@ if(NOT LX_STANDALONE_ENABLE)
"azrtos::threadx")
endif()
if(LX_ENABLE_FILE_SERVERS)
message(STATUS "LX_ENABLE_FILE_SERVERS - defined")
target_link_libraries(${PROJECT_NAME} PUBLIC "azrtos::filex")
endif()
# A place for generated/copied include files (no need to change)
set(CUSTOM_INC_DIR ${CMAKE_CURRENT_BINARY_DIR}/custom_inc)