Files
cmake/Source/cmBinUtilsLinker.h
Matthew Woehlke a5a9ec9113 TargetTypes: Extract target-related types to dedicated header
Move some target related enumeration types from `cmStateTypes.h` to a
new header, as these really aren't "state" types. Also, make
`TargetType` a strongly-typed enumeration.
2026-07-01 14:44:11 -04:00

32 lines
704 B
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#pragma once
#include <string>
class cmRuntimeDependencyArchive;
namespace cm {
enum class TargetType;
} // namespace cm
class cmBinUtilsLinker
{
public:
cmBinUtilsLinker(cmRuntimeDependencyArchive* archive);
virtual ~cmBinUtilsLinker() = default;
virtual bool Prepare() { return true; }
virtual bool ScanDependencies(std::string const& file,
cm::TargetType type) = 0;
protected:
cmRuntimeDependencyArchive* Archive;
void SetError(std::string const& e);
void NormalizePath(std::string& path) const;
};