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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
Michael Black
OpenXG-RAN
Commits
9d04f2e8
Commit
9d04f2e8
authored
Jan 23, 2023
by
thamizhselvan.k
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed from include_directories to target_include_directories for oran_fhlib_5g
parent
786cdd83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
CMakeLists.txt
+4
-4
No files found.
CMakeLists.txt
View file @
9d04f2e8
...
...
@@ -669,10 +669,6 @@ target_link_libraries(benetel_5g PRIVATE asn1_nr_rrc asn1_lte_rrc)
# ORAN 5G library
######################################################################
include_directories
(
"
${
XRAN_DIR
}
"
)
include_directories
(
"
${
DPDK_DIR
}
"
)
include_directories
(
"
${
INTEL_LIB
}
"
)
set
(
ORAN_FHLIB_5G_SOURCE
${
OPENAIR_TARGETS
}
/ARCH/ETHERNET/oran/5g/oran.cpp
${
OPENAIR_TARGETS
}
/ARCH/ETHERNET/oran/5g/xran_lib_wrap.cpp
...
...
@@ -680,6 +676,10 @@ set(ORAN_FHLIB_5G_SOURCE
)
add_library
(
oran_fhlib_5g MODULE
${
ORAN_FHLIB_5G_SOURCE
}
)
target_include_directories
(
oran_fhlib_5g PRIVATE
${
XRAN_DIR
}
)
target_include_directories
(
oran_fhlib_5g PRIVATE
${
DPDK_DIR
}
)
target_include_directories
(
oran_fhlib_5g PRIVATE
${
INTEL_LIB
}
)
set_target_properties
(
oran_fhlib_5g PROPERTIES COMPILE_FLAGS
"-fvisibility=hidden -march=native -I$ENV{RTE_SDK}/$ENV{RTE_TARGET}/include"
)
SET
(
DPDK_LIBS
"-Wl,-rpath,$ENV{RTE_SDK}/$ENV{RTE_TARGET}/lib -Wl,--whole-archive -L$ENV{RTE_SDK}/$ENV{RTE_TARGET}/lib -ldpdk -Wl,--no-whole-archive"
)
...
...
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