Install BipartiteMatchings headers for SuperLU_DIST. --- a/BipartiteMatchings/ApproxWeightPerfectMatching.h +++ b/BipartiteMatchings/ApproxWeightPerfectMatching.h @@ -9,7 +9,7 @@ #ifndef ApproxWeightPerfectMatching_h #define ApproxWeightPerfectMatching_h -#include "../CombBLAS.h" +#include "CombBLAS.h" #include "BPMaximalMatching.h" #include "BPMaximumMatching.h" #include --- a/BipartiteMatchings/BPMaximalMatching.h +++ b/BipartiteMatchings/BPMaximalMatching.h @@ -1,7 +1,7 @@ #ifndef BP_MAXIMAL_MATCHING_H #define BP_MAXIMAL_MATCHING_H -#include "../CombBLAS.h" +#include "CombBLAS.h" #include #include #include --- a/BipartiteMatchings/BPMaximumMatching.h +++ b/BipartiteMatchings/BPMaximumMatching.h @@ -1,7 +1,7 @@ #ifndef BP_MAXIMUM_MATCHING_H #define BP_MAXIMUM_MATCHING_H -#include "../CombBLAS.h" +#include "CombBLAS.h" #include #include #include --- a/BipartiteMatchings/MatchingDefs.h +++ b/BipartiteMatchings/MatchingDefs.h @@ -9,7 +9,7 @@ #ifndef MatchingDefs_h #define MatchingDefs_h -#include "../CombBLAS.h" +#include "CombBLAS.h" #include namespace combblas { --- a/BipartiteMatchings/Utility.h +++ b/BipartiteMatchings/Utility.h @@ -1,7 +1,7 @@ #ifndef BP_UTILITY_H #define BP_UTILITY_H -#include "../CombBLAS.h" +#include "CombBLAS.h" namespace combblas { --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,6 +68,7 @@ set_property(TARGET CombBLAS PROPERTY VERSION ${CombBLAS_VERSION}) # installation install(DIRECTORY include/ DESTINATION include) install(DIRECTORY psort-1.0/include/ DESTINATION include) +install(DIRECTORY BipartiteMatchings DESTINATION include FILES_MATCHING PATTERN "*.h") install(TARGETS CombBLAS EXPORT CombBLASTargets LIBRARY DESTINATION lib ARCHIVE DESTINATION lib thor
AgeCommit message (Expand)Author
2020-12-11install: Discover local substitute servers....* gnu/installer/substitutes.scm: New file. * gnu/installer/newt/substitutes.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add them. * po/guix/POTFILES.in: Add gnu/installer/newt/substitutes.scm. * gnu/installer/proxy.scm (with-silent-shepherd): Move to ... * gnu/installer/utils.scm: ... here. * gnu/installer/record.scm (<installer>)[substitutes-page]: New field. * gnu/installer/newt.scm (substitutes-page): New procedure, (newt-installer): register it. * gnu/installer.scm (installer-steps): Add "substitutes-page" step. * gnu/system/install.scm (%installation-services): Add avahi-service-type and enable substitute server discover in guix-service-type. [<name-service-switch>]: Set it to %mdns-host-lookup-nss. Mathieu Othacehe