Skip to content
Snippets Groups Projects
Commit a7998c79 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing COMPONENT for VCluster

parent 4cb4256e
No related branches found
No related tags found
No related merge requests found
Pipeline #2812 passed
......@@ -15,6 +15,8 @@ set(PETSC_ROOT CACHE PATH "If compiling with linear algebra indicate the PETSC r
set(ALPAKA_ROOT CACHE PATH "Alpaka root path")
set(CUDA_ON_CPU CACHE BOOL "Make Cuda work on heap")
execute_process(COMMAND bash -c "cp ${CMAKE_CURRENT_SOURCE_DIR}/src/VCluster/VCluster.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/VCluster/VCluster_cuda_on_cpu.cpp")
if (ENABLE_GPU)
set(CUDA_ON_CPU OFF)
enable_language(CUDA)
......
......@@ -139,22 +139,25 @@ if (CUDA_FOUND AND NOT CUDA_ON_CPU)
set(ADDITIONAL_OPENFPM_LIBS vcluster_cuda_on_cpu vcluster_dl_cuda_on_cpu)
endif()
install(TARGETS vcluster vcluster_dl ${ADDITIONAL_OPENFPM_LIBS} DESTINATION openfpm_vcluster/lib)
install(TARGETS vcluster vcluster_dl ${ADDITIONAL_OPENFPM_LIBS} DESTINATION openfpm_vcluster/lib COMPONENT OpenFPM)
install(FILES MPI_wrapper/MPI_IallreduceW.hpp
MPI_wrapper/MPI_IrecvW.hpp
MPI_wrapper/MPI_IBcastW.hpp
MPI_wrapper/MPI_IsendW.hpp
MPI_wrapper/MPI_util.hpp
MPI_wrapper/MPI_IAllGather.hpp
DESTINATION openfpm_vcluster/include/MPI_wrapper)
DESTINATION openfpm_vcluster/include/MPI_wrapper
COMPONENT OpenFPM)
install(FILES VCluster/VCluster_base.hpp
VCluster/VCluster.hpp
VCluster/VCluster_meta_function.hpp
DESTINATION openfpm_vcluster/include/VCluster )
DESTINATION openfpm_vcluster/include/VCluster
COMPONENT OpenFPM)
install (FILES util/Vcluster_log.hpp
DESTINATION openfpm_vcluster/include/util)
DESTINATION openfpm_vcluster/include/util
COMPONENT OpenFPM)
#if(BUILD_TESTING)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment