mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-15 08:30:44 +08:00
12 lines
347 B
C++
12 lines
347 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class cmExecutionStatus;
|
|
|
|
bool HandleReadMachoCommand(std::vector<std::string> const& args,
|
|
cmExecutionStatus& status);
|