1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-28 18:04:51 +00:00

Fix dependencies order when using 'make -jX'

git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@467 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
Carles Fernandez 2013-12-20 01:20:39 +00:00
parent 7fac9f9507
commit a6eaff8a65
5 changed files with 6 additions and 5 deletions

View File

@ -38,5 +38,5 @@ include_directories(
)
add_library(pvt_lib ${PVT_LIB_SOURCES})
add_dependencies(pvt_lib armadillo-${armadillo_RELEASE} glog-${glog_RELEASE})
target_link_libraries(pvt_lib ${Boost_LIBRARIES} ${GFlags_LIBS} ${GLOG_LIBRARIES} ${ARMADILLO_LIBRARIES} )
add_dependencies(input_filter_adapters armadillo-${armadillo_RELEASE} glog-${glog_RELEASE})

View File

@ -29,5 +29,5 @@ include_directories(
)
add_library(datatype_adapters ${DATATYPE_ADAPTER_SOURCES})
add_dependencies(datatype_adapters glog-${glog_RELEASE})
target_link_libraries(datatype_adapters ${GNURADIO_FILTER_LIBRARIES} ${GNURADIO_BLOCKS_LIBRARIES})
add_dependencies(datatype_adapters glog-${glog_RELEASE})

View File

@ -31,5 +31,5 @@ include_directories(
)
add_library(input_filter_adapters ${INPUT_FILTER_ADAPTER_SOURCES})
add_dependencies(input_filter_adapters glog-${glog_RELEASE})
target_link_libraries(input_filter_adapters ${GNURADIO_RUNTIME_LIBRARIES} ${GNURADIO_BLOCKS_LIBRARIES} ${GNURADIO_FILTER_LIBRARIES})
add_dependencies(input_filter_adapters glog-${glog_RELEASE})

View File

@ -34,5 +34,5 @@ include_directories(
)
add_library(obs_gr_blocks ${OBS_GR_BLOCKS_SOURCES} )
add_dependencies(obs_gr_blocks glog-${glog_RELEASE})
target_link_libraries(obs_gr_blocks ${GNURADIO_RUNTIME_LIBRARIES})
add_dependencies(obs_gr_blocks glog-${glog_RELEASE})

View File

@ -49,5 +49,6 @@ include_directories(
link_directories(${Boost_LIBRARY_DIR})
add_library(gnss_system_parameters ${SYSTEM_PARAMETERS_SOURCES})
target_link_libraries(gnss_system_parameters ${Boost_LIBRARIES})
add_dependencies(gnss_system_parameters glog-${glog_RELEASE})
target_link_libraries(gnss_system_parameters ${Boost_LIBRARIES})