File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,12 @@ find_package(MPI REQUIRED)
1818#adios2 adds C and Fortran depending on how it was built
1919find_package (ADIOS2 CONFIG 2.7.1 REQUIRED)
2020# external packages (perfstubs)
21- add_subdirectory (external)
21+ # FetchContent seems to have issues with downstream (coupler)
22+ # this may be resolvalbe by "installing" perfstubs.
23+ # for now, we can use the external build provided via spack
24+ # If you want to build with spack see: https://github.com/jacobmerson/pcms-spack
25+ #add_subdirectory(external)
26+ find_package (perfstubs REQUIRED)
2227
2328set (REDEV_HEADERS
2429 redev.h
Original file line number Diff line number Diff line change @@ -9,4 +9,5 @@ include(CMakeFindDependencyMacro)
99enable_language (C) #required for MPI::MPI_C
1010find_dependency(MPI)
1111find_dependency(ADIOS2 CONFIG HINTS @ADIOS2_DIR@)
12+ find_dependency(perfstubs)
1213
You can’t perform that action at this time.
0 commit comments