mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 12:49:36 -06:00
22 lines
569 B
C++
22 lines
569 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 "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
struct cmBuildOptions
|
|
{
|
|
public:
|
|
cmBuildOptions() noexcept = default;
|
|
explicit cmBuildOptions(bool clean, bool fast) noexcept
|
|
: Clean(clean)
|
|
, Fast(fast)
|
|
{
|
|
}
|
|
explicit cmBuildOptions(const cmBuildOptions&) noexcept = default;
|
|
cmBuildOptions& operator=(const cmBuildOptions&) noexcept = default;
|
|
|
|
bool Clean = false;
|
|
bool Fast = false;
|
|
};
|