Skip to content

Commit f11877b

Browse files
dvdgrgrttcodebot
authored andcommitted
cmake: fix include_directories paths
Some paths still contained srsgnb.
1 parent c02dc10 commit f11877b

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

lib/phy/upper/channel_coding/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# the distribution.
77
#
88

9-
include_directories(${PROJECT_SOURCE_DIR}/include/srsgnb/phy/upper/channel_coding)
9+
include_directories(${PROJECT_SOURCE_DIR}/include/srsran/phy/upper/channel_coding)
1010

1111
set(CRC_CALCULATOR_SOURCES crc_calculator_lut_impl.cpp)
1212
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64")

lib/phy/upper/channel_coding/ldpc/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# the distribution.
77
#
88

9-
include_directories(${PROJECT_SOURCE_DIR}/include/srsgnb/phy/upper/channel_coding/ldpc)
9+
include_directories(${PROJECT_SOURCE_DIR}/include/srsran/phy/upper/channel_coding/ldpc)
1010

1111
set(ldpc_sources
1212
ldpc_graph_impl.cpp
@@ -36,11 +36,11 @@ if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64")
3636
set_source_files_properties(ldpc_rate_dematcher_avx512_impl.cpp PROPERTIES COMPILE_OPTIONS "-mavx512f;-mavx512bw;")
3737
endif (${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64")
3838

39-
if(HAVE_NEON)
40-
list(APPEND ldpc_sources ldpc_encoder_neon.cpp)
41-
list(APPEND ldpc_sources ldpc_decoder_neon.cpp)
42-
list(APPEND ldpc_sources ldpc_rate_dematcher_neon_impl.cpp)
43-
endif(HAVE_NEON)
39+
if (HAVE_NEON)
40+
list(APPEND ldpc_sources ldpc_encoder_neon.cpp)
41+
list(APPEND ldpc_sources ldpc_decoder_neon.cpp)
42+
list(APPEND ldpc_sources ldpc_rate_dematcher_neon_impl.cpp)
43+
endif (HAVE_NEON)
4444

4545
add_library(srsran_ldpc STATIC ${ldpc_sources})
4646

lib/phy/upper/channel_coding/polar/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# the distribution.
77
#
88

9-
include_directories(${PROJECT_SOURCE_DIR}/include/srsgnb/phy/upper/channel_coding/polar)
9+
include_directories(${PROJECT_SOURCE_DIR}/include/srsran/phy/upper/channel_coding/polar)
1010

1111
add_library(srsran_polar STATIC
1212
polar_allocator_impl.cpp
@@ -17,5 +17,5 @@ add_library(srsran_polar STATIC
1717
polar_interleaver_impl.cpp
1818
polar_rate_dematcher_impl.cpp
1919
polar_rate_matcher_impl.cpp
20-
)
20+
)
2121
target_link_libraries(srsran_polar log_likelihood_ratio srslog)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
include_directories(${PROJECT_SOURCE_DIR}/include/srsgnb/phy/upper/channel_coding/short)
1+
include_directories(${PROJECT_SOURCE_DIR}/include/srsran/phy/upper/channel_coding/short)
22
add_library(srsran_short_block STATIC short_block_encoder_impl.cpp short_block_detector_impl.cpp)
33
target_link_libraries(srsran_short_block srsran_support log_likelihood_ratio srsvec)

lib/phy/upper/channel_modulation/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set(SOURCES
1616
evm_calculator_generic_impl.cpp
1717
modulation_mapper_impl.cpp)
1818

19-
include_directories(../../../../include/srsgnb/phy/upper/channel_modulation)
19+
include_directories(../../../../include/srsran/phy/upper/channel_modulation)
2020

2121
add_library(srsran_channel_modulation STATIC ${SOURCES})
2222
target_link_libraries(srsran_channel_modulation srsran_support log_likelihood_ratio)

lib/phy/upper/sequence_generators/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set(SOURCES
1313
sequence_generator_factories.cpp
1414
)
1515

16-
include_directories(../../../../include/srsgnb/phy/upper/sequence_generators)
16+
include_directories(../../../../include/srsran/phy/upper/sequence_generators)
1717

1818
add_library(srsran_sequence_generators STATIC ${SOURCES})
1919
target_link_libraries(srsran_sequence_generators srsran_support srsvec)

lib/phy/upper/signal_processors/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set(SOURCES
2020
sss_processor_impl.cpp
2121
)
2222

23-
include_directories(../../../../include/srsgnb/phy/upper/signal_processors)
23+
include_directories(../../../../include/srsran/phy/upper/signal_processors)
2424

2525
add_library(srsran_signal_processors STATIC ${SOURCES})
2626
target_link_libraries(srsran_signal_processors srsvec srsran_phy_support srsran_upper_phy_support srsran_ran srsran_generic_funcs)

lib/srslog/CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@
77
#
88

99
set(SOURCES
10-
backend_worker.cpp
11-
srslog.cpp
12-
srslog_c.cpp
13-
event_trace.cpp)
10+
backend_worker.cpp
11+
srslog.cpp
12+
srslog_c.cpp
13+
event_trace.cpp)
1414

15-
include_directories(${PROJECT_SOURCE_DIR}/include/srsgnb/srslog/bundled/)
16-
include_directories(${PROJECT_SOURCE_DIR}/include/srsgnb/srslog/formatters)
15+
include_directories(${PROJECT_SOURCE_DIR}/include/srsran/srslog/bundled/)
16+
include_directories(${PROJECT_SOURCE_DIR}/include/srsran/srslog/formatters)
1717

1818
set(SOURCES
19-
${SOURCES}
20-
${CMAKE_CURRENT_SOURCE_DIR}/formatters/json_formatter.cpp
21-
${CMAKE_CURRENT_SOURCE_DIR}/formatters/text_formatter.cpp)
19+
${SOURCES}
20+
${CMAKE_CURRENT_SOURCE_DIR}/formatters/json_formatter.cpp
21+
${CMAKE_CURRENT_SOURCE_DIR}/formatters/text_formatter.cpp)
2222

2323

2424
add_library(srslog STATIC ${SOURCES})

lib/srsvec/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set(SOURCES
1919
subtract.cpp
2020
)
2121

22-
include_directories(${PROJECT_SOURCE_DIR}/include/srsgnb/srsvec)
22+
include_directories(${PROJECT_SOURCE_DIR}/include/srsran/srsvec)
2323

2424
add_library(srsvec STATIC ${SOURCES})
2525
target_link_libraries(srsvec srslog)

0 commit comments

Comments
 (0)