Coverage Report

Created: 2026-02-09 06:05

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/CMake/Source/cmInstallAndroidMKExportGenerator.cxx
Line
Count
Source
1
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2
   file LICENSE.rst or https://cmake.org/licensing for details.  */
3
#include "cmInstallAndroidMKExportGenerator.h"
4
5
#include <utility>
6
7
#include <cm/memory>
8
9
#include "cmExportInstallAndroidMKGenerator.h"
10
#include "cmExportInstallFileGenerator.h"
11
#include "cmListFileCache.h"
12
13
class cmExportSet;
14
15
cmInstallAndroidMKExportGenerator::cmInstallAndroidMKExportGenerator(
16
  cmExportSet* exportSet, std::string destination, std::string filePermissions,
17
  std::vector<std::string> const& configurations, std::string component,
18
  MessageLevel message, bool excludeFromAll, std::string filename,
19
  std::string targetNamespace, cmListFileBacktrace backtrace)
20
0
  : cmInstallExportGenerator(exportSet, std::move(destination),
21
0
                             std::move(filePermissions), configurations,
22
0
                             std::move(component), message, excludeFromAll,
23
0
                             std::move(filename), std::move(targetNamespace),
24
0
                             std::string{}, std::move(backtrace))
25
0
{
26
0
  this->EFGen = cm::make_unique<cmExportInstallAndroidMKGenerator>(this);
27
0
}
28
29
0
cmInstallAndroidMKExportGenerator::~cmInstallAndroidMKExportGenerator() =
30
  default;