Commit 340e2633 authored by Robert Schmidt's avatar Robert Schmidt

Fix dependencies of nr_dlschsim

When we run just cmake ../../../ && make nr_dlschsim, it does not
generate the T headers. Therefore, we explicitly add a dependency of
nr_dlschsim to generate_T so headers are correctly created.
parent adac3171
...@@ -2953,8 +2953,12 @@ add_executable(nr_dlschsim ...@@ -2953,8 +2953,12 @@ add_executable(nr_dlschsim
) )
target_link_libraries(nr_dlschsim target_link_libraries(nr_dlschsim
-Wl,--start-group UTIL SIMU_COMMON SIMU PHY_COMMON PHY_NR_COMMON PHY_NR PHY_NR_UE SCHED_NR_LIB CONFIG_LIB MAC_NR_COMMON -Wl,--end-group -Wl,--start-group UTIL SIMU_COMMON SIMU PHY_COMMON PHY_NR_COMMON PHY_NR PHY_NR_UE SCHED_NR_LIB CONFIG_LIB MAC_NR_COMMON -Wl,--end-group
m pthread ${ATLAS_LIBRARIES} ${T_LIB} ${ITTI_LIB} dl m pthread ${ATLAS_LIBRARIES} ${T_LIB} ${ITTI_LIB} dl small-utils
) )
# for some reason, we need to have this here again when building only
# nr_dlschsim. Note that this has been expressed above already, although it is
# better to list it explicitly for each executable if needed
add_dependencies(nr_dlschsim generate_T)
add_executable(nr_pbchsim add_executable(nr_pbchsim
${OPENAIR1_DIR}/SIMULATION/NR_PHY/pbchsim.c ${OPENAIR1_DIR}/SIMULATION/NR_PHY/pbchsim.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment