Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
04a8633d
Commit
04a8633d
authored
Jan 03, 2023
by
Sakthivel Velumani
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make libraries lower case in CMakeLists
parent
033ec174
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
17 deletions
+14
-17
CMakeLists.txt
CMakeLists.txt
+6
-9
openair2/E1AP/CMakeLists.txt
openair2/E1AP/CMakeLists.txt
+5
-5
openair2/E1AP/MESSAGES/CMakeLists.txt
openair2/E1AP/MESSAGES/CMakeLists.txt
+3
-3
No files found.
CMakeLists.txt
View file @
04a8633d
...
...
@@ -349,7 +349,6 @@ add_library(ITTI
${
OCP_ITTI
}
/intertask_interface.cpp
${
OPENAIR_DIR
}
/common/utils/backtrace.c
)
#add_dependencies(ITTI ASN1_E1AP_LIB)
target_link_libraries
(
ITTI PRIVATE asn1_nr_rrc asn1_lte_rrc
)
...
...
@@ -958,8 +957,6 @@ add_library(NFAPI_COMMON_LIB ${NFAPI_COMMON_SRC})
include_directories
(
${
NFAPI_DIR
}
/common/public_inc
)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
/openair2/E1AP/MESSAGES/
)
set
(
NFAPI_SRC
${
NFAPI_DIR
}
/nfapi/src/nfapi.c
${
NFAPI_DIR
}
/nfapi/src/nfapi_p4.c
...
...
@@ -1706,20 +1703,20 @@ add_library(L2_NR
${
GNB_APP_SRC
}
)
add_library
(
E1_IF
add_library
(
e1_if
${
NR_RRC_DIR
}
/cucp_cuup_direct.c
${
NR_RRC_DIR
}
/cucp_cuup_e1ap.c
)
target_link_libraries
(
E1_IF
PRIVATE asn1_nr_rrc asn1_lte_rrc asn1_f1ap
)
target_link_libraries
(
e1_if
PRIVATE asn1_nr_rrc asn1_lte_rrc asn1_f1ap
)
add_library
(
E1_PDCP_IF
add_library
(
e1_pdcp_if
${
OPENAIR2_DIR
}
/LAYER2/nr_pdcp/nr_pdcp_e1_api.c
)
target_link_libraries
(
E1_PDCP_IF
PRIVATE asn1_nr_rrc asn1_lte_rrc
)
target_link_libraries
(
e1_pdcp_if
PRIVATE asn1_nr_rrc asn1_lte_rrc
)
target_link_libraries
(
L2_NR PRIVATE f1ap x2ap s1ap ngap nr_rrc
E1AP
)
target_link_libraries
(
L2_NR PRIVATE f1ap x2ap s1ap ngap nr_rrc
e1ap
)
add_library
(
L2_LTE_NR
${
L2_RRC_SRC
}
...
...
@@ -2486,7 +2483,7 @@ add_executable(cu-up
${
SHLIB_LOADER_SOURCES
}
)
target_link_libraries
(
cu-up -Wl,--start-group CONFIG_LIB ITTI SCTP_CLIENT SECU_OSA GTPV1U
E1AP E1_PDCP_IF
asn1_lte_rrc asn1_nr_rrc asn1_f1ap
${
OPENSSL_LIBRARIES
}
-Wl,--end-group crypt z sctp dl
)
target_link_libraries
(
cu-up -Wl,--start-group CONFIG_LIB ITTI SCTP_CLIENT SECU_OSA GTPV1U
e1ap e1_pdcp_if
asn1_lte_rrc asn1_nr_rrc asn1_f1ap
${
OPENSSL_LIBRARIES
}
-Wl,--end-group crypt z sctp dl
)
# nr-uesoftmodem is UE implementation
#######################################
...
...
openair2/E1AP/CMakeLists.txt
View file @
04a8633d
add_subdirectory
(
MESSAGES
)
add_library
(
E1AP
e1ap.c e1ap_common.c e1ap_api.c
)
target_link_libraries
(
E1AP
PUBLIC
ASN1_E1AP_LIB
PRIVATE asn1_nr_rrc asn1_lte_rrc asn1_f1ap UTIL
E1_PDCP_IF E1_IF
)
target_include_directories
(
E1AP
PUBLIC
${
CMAKE_CURRENT_DIR
}
)
add_library
(
e1ap
e1ap.c e1ap_common.c e1ap_api.c
)
target_link_libraries
(
e1ap
PUBLIC
asn1_e1ap
PRIVATE asn1_nr_rrc asn1_lte_rrc asn1_f1ap UTIL
e1_pdcp_if e1_if
)
target_include_directories
(
e1ap
PUBLIC
${
CMAKE_CURRENT_DIR
}
)
openair2/E1AP/MESSAGES/CMakeLists.txt
View file @
04a8633d
...
...
@@ -15,6 +15,6 @@ add_custom_command(OUTPUT ${e1ap_source} ${e1ap_headers}
COMMENT
"Generating E1AP source files from
${
CMAKE_CURRENT_SOURCE_DIR
}
/
${
E1AP_GRAMMAR
}
"
)
add_library
(
ASN1_E1AP_LIB
${
e1ap_source
}
)
target_include_directories
(
ASN1_E1AP_LIB
PUBLIC
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
)
target_compile_options
(
ASN1_E1AP_LIB
PRIVATE -DASN_DISABLE_OER_SUPPORT -w
)
add_library
(
asn1_e1ap
${
e1ap_source
}
)
target_include_directories
(
asn1_e1ap
PUBLIC
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
)
target_compile_options
(
asn1_e1ap
PRIVATE -DASN_DISABLE_OER_SUPPORT -w
)
FANG WANG
@wf
mentioned in commit
553f1d1a
·
Feb 11, 2023
mentioned in commit
553f1d1a
mentioned in commit 553f1d1a52845911be4ba61ec2bcc5c60ad42ae7
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment