mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Add the E3AP CMake target, which links the external libe3 library discovered via pkg-config, and the E3Configuration parser that reads the link and transport selection from the gNB configuration file and validates the supported link/transport combinations. libe3 is kept external and is only required when E3_AGENT is enabled. Signed-off-by: Andrea Lacava <thecave003@gmail.com>
18 lines
388 B
CMake
18 lines
388 B
CMake
# SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
|
|
add_compile_options(-Wunused-parameter)
|
|
add_subdirectory(E1AP)
|
|
if(E2_AGENT)
|
|
add_subdirectory(E2AP)
|
|
endif()
|
|
if(E3_AGENT)
|
|
message(STATUS "Add E3 Agent capabilities")
|
|
add_subdirectory(E3AP)
|
|
endif()
|
|
add_subdirectory(F1AP)
|
|
add_subdirectory(LAYER2)
|
|
add_subdirectory(M2AP)
|
|
add_subdirectory(X2AP)
|
|
add_subdirectory(RRC)
|
|
add_subdirectory(XNAP)
|