add ETL dependency

This commit is contained in:
Robin Müller 2022-03-28 20:16:11 +02:00
parent 0d7d2203d2
commit 2800d6f28c
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 20 additions and 0 deletions

View File

@ -88,6 +88,26 @@ if(FSFW_BUILD_UNITTESTS)
endif()
endif()
message(STATUS "Finding and/or providing ETL library")
# Check whether the user has already installed Catch2 first
find_package(etl QUIET)
# Not installed, so use FetchContent to download and provide etl
if(NOT etl_FOUND)
message(STATUS
"No ETL installation was found with find_package. Installing and providing "
"etl with FindPackage"
)
include(FetchContent)
FetchContent_Declare(
etl
GIT_REPOSITORY https://github.com/ETLCPP/etl
GIT_TAG 20.26.0
)
FetchContent_MakeAvailable(etl)
endif()
set(FSFW_CORE_INC_PATH "inc")
set_property(CACHE FSFW_OSAL PROPERTY STRINGS host linux rtems freertos)