X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/940c16ac4618d80e15068fea102fc8b0d58ddab8..f20fe8a11db9e893dbf55a03d4cf6132bdc4c65c:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index efb9595b9c..29c3b563fc 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -56,6 +56,10 @@ if(HAVE_LUA) SET(SIMGRID_DEP "${SIMGRID_DEP} ${LUA_LIBRARY} -ldl") endif() +if(HAVE_PAPI) + SET(SIMGRID_DEP "${SIMGRID_DEP} -lpapi") +endif() + if(HAVE_GRAPHVIZ) if(HAVE_CGRAPH_LIB) SET(SIMGRID_DEP "${SIMGRID_DEP} -lcgraph") @@ -105,6 +109,9 @@ target_link_libraries(simgrid ${SIMGRID_DEP}) # Dependencies from maintainer mode ################################### +if(enable_maintainer_mode) + add_dependencies(simgrid smpi_generated_headers_call_location_tracing) +endif() if(enable_maintainer_mode AND PYTHON_EXE) add_dependencies(simgrid simcalls_generated_src) endif()