https://github.com/Kitware/CMake
Revision b0566f62eb9de7d1baaf3d3d4bcdaea547e8ca86 authored by Brad King on 27 August 2019, 14:11:06 UTC, committed by Brad King on 27 August 2019, 14:11:06 UTC
2 parent s 290ab79 + d040f3f
Raw File
Tip revision: b0566f62eb9de7d1baaf3d3d4bcdaea547e8ca86 authored by Brad King on 27 August 2019, 14:11:06 UTC
Merge branch 'ninja_additional_clean_files_custom_target' into release-3.15
Tip revision: b0566f6
cmBuildNameCommand.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cmBuildNameCommand_h
#define cmBuildNameCommand_h

#include "cmConfigure.h" // IWYU pragma: keep

#include <string>
#include <vector>

#include "cmCommand.h"

class cmExecutionStatus;

class cmBuildNameCommand : public cmCommand
{
public:
  cmCommand* Clone() override { return new cmBuildNameCommand; }
  bool InitialPass(std::vector<std::string> const& args,
                   cmExecutionStatus& status) override;
};

#endif
back to top