Skip to content

Commit

Permalink
fix missing export of conduit_blueprint_mpi lib (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush committed Sep 14, 2020
1 parent d11971f commit ef03d1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/config/conduit_config.mk.in
Expand Up @@ -142,6 +142,7 @@ CONDUIT_LIB_FLAGS = -L $(CONDUIT_DIR)/lib \
CONDUIT_MPI_LIB_FLAGS = -L $(CONDUIT_DIR)/lib \
-lconduit_relay_mpi_io \
-lconduit_relay_mpi \
-lconduit_blueprint_mpi \
-lconduit_blueprint \
-lconduit_relay \
-lconduit $(CONDUIT_ADIOS_MPI_LIB_FLAGS) $(CONDUIT_SILO_LIB_FLAGS) $(CONDUIT_HDF5_LIB_FLAGS) $(CONDUIT_ZFP_LIB_FLAGS) $(CONDUIT_EXTRA_LIB_FLAGS)
Expand Down
6 changes: 5 additions & 1 deletion src/config/conduit_setup_targets.cmake
Expand Up @@ -112,7 +112,11 @@ if(CONDUIT_RELAY_MPI_ENABLED)
add_library(conduit::conduit_mpi INTERFACE IMPORTED)
set_property(TARGET conduit::conduit_mpi
PROPERTY INTERFACE_LINK_LIBRARIES
conduit::conduit conduit_relay_mpi conduit_relay_mpi_io)
conduit::conduit
conduit_relay_mpi
conduit_relay_mpi_io
conduit_blueprint
conduit_blueprint_mpi)
endif()

if(NOT Conduit_FIND_QUIETLY)
Expand Down

0 comments on commit ef03d1a

Please sign in to comment.