EIVE prefixes added

This commit is contained in:
Robin Müller 2021-09-29 09:14:17 +02:00
parent c1fe5325ed
commit cf04b83cdf
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ endif()
option(EIVE_BUILD_UNITTESTS "Build Catch2 unittests" OFF)
option(EIVE_ADD_ETL_LIB "Add ETL library" ON)
option(ADD_JSON_LIB "Add JSON library" ON)
option(EIVE_ADD_JSON_LIB "Add JSON library" ON)
option(EIVE_SYSROOT_MAGIC "Perform sysroot magic which might not be necessary" OFF)
if(NOT FSFW_OSAL)
@ -148,7 +148,7 @@ if(EIVE_ADD_ETL_LIB)
add_subdirectory(${ETL_LIB_PATH})
endif()
if(ADD_JSON_LIB)
if(EIVE_ADD_JSON_LIB)
add_subdirectory(${LIB_JSON_PATH})
endif()
@ -210,7 +210,7 @@ if(EIVE_ADD_ETL_LIB)
)
endif()
if(ADD_JSON_LIB)
if(EIVE_ADD_JSON_LIB)
target_link_libraries(${TARGET_NAME} PRIVATE
${LIB_JSON_NAME}
)