Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3307d9c9 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

chameleon already owns the dependencies thanks to target_link_libraries, just...

chameleon already owns the dependencies thanks to target_link_libraries, just add a comment to recall direct dependencies
parent af306337
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,8 @@ set(OOC_SOURCES ...@@ -37,7 +37,8 @@ set(OOC_SOURCES
# Define what libraries we have to link with # Define what libraries we have to link with
# ------------------------------------------ # ------------------------------------------
unset(libs_for_ooc) unset(libs_for_ooc)
list(APPEND libs_for_ooc ${CHAMELEON_LIBRARIES_DEP}) # ooc executable depends on chameleon and lapacke (already a chameleon's dependency)
list(APPEND libs_for_ooc chameleon)
# message(STATUS "libs_for_ooc: ${libs_for_ooc}") # message(STATUS "libs_for_ooc: ${libs_for_ooc}")
foreach(_ooc ${OOC_SOURCES}) foreach(_ooc ${OOC_SOURCES})
......
...@@ -104,7 +104,8 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) ...@@ -104,7 +104,8 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
# Define what libraries we have to link with # Define what libraries we have to link with
# ------------------------------------------ # ------------------------------------------
unset(libs_for_tests) unset(libs_for_tests)
list(APPEND libs_for_tests ${CHAMELEON_LIBRARIES_DEP}) # testing executables depend on chameleon and cblas, lapacke, mpi (already chameleon's dependencies)
list(APPEND libs_for_tests chameleon)
# message(STATUS "libs testings: ${libs_for_tests}") # message(STATUS "libs testings: ${libs_for_tests}")
# Create one testing per precision with all files # Create one testing per precision with all files
......
...@@ -170,7 +170,8 @@ if(NOT CHAMELEON_SIMULATION) ...@@ -170,7 +170,8 @@ if(NOT CHAMELEON_SIMULATION)
list(APPEND libs_for_timings chameleon_timing) list(APPEND libs_for_timings chameleon_timing)
endif() endif()
list(APPEND libs_for_timings ${CHAMELEON_LIBRARIES_DEP}) # timing executables depend on chameleon and cblas, lapacke, starpu (optional), mpi (already chameleon's dependencies)
list(APPEND libs_for_timings chameleon)
# message(STATUS "libs timings: ${libs_for_timings}") # message(STATUS "libs timings: ${libs_for_timings}")
foreach(_timing ${TIMINGS}) foreach(_timing ${TIMINGS})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment