summaryrefslogtreecommitdiff
path: root/Source/cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.cxx
blob: a296a474c52a143186bc2e3f1ce592acc6f6e899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */

#include "cmBinUtilsMacOSMachOGetRuntimeDependenciesTool.h"

#include "cmRuntimeDependencyArchive.h"

cmBinUtilsMacOSMachOGetRuntimeDependenciesTool::
  cmBinUtilsMacOSMachOGetRuntimeDependenciesTool(
    cmRuntimeDependencyArchive* archive)
  : Archive(archive)
{
}

void cmBinUtilsMacOSMachOGetRuntimeDependenciesTool::SetError(
  const std::string& error)
{
  this->Archive->SetError(error);
}