Skip to content

Commit

Permalink
Merge branch 'master' of github.com:spcl/LogGOPSim
Browse files Browse the repository at this point in the history
  • Loading branch information
tim0s committed Oct 20, 2023
2 parents 273db34 + 8ad4015 commit 52e64d4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@ add_library(mpipclog mpi_c_wrapper.c)
add_library(mpipflog mpi_f_wrapper.c)
add_dependencies(mpipclog mpi_wrapper_generated)
add_dependencies(mpipflog mpi_wrapper_generated)
target_link_libraries(mpipclog ${MPI_C_LIBRARIES} unwind::unwind)
target_link_libraries(mpipflog ${MPI_Fortran_LIBRARIES} unwind::unwind)

target_link_libraries(mpipclog ${MPI_C_LIBRARIES})
target_link_libraries(mpipflog ${MPI_Fortran_LIBRARIES})
if (Unwind_FOUND)
target_link_libraries(mpipclog unwind::unwind)
target_link_libraries(mpipflog unwind::unwind)
endif()

include(CTest)
# test the c++ toolchain for some pattern
Expand Down

0 comments on commit 52e64d4

Please sign in to comment.