mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-19 11:18:40 +08:00

These properties enable to manage output directories on per source file basis. Fixes: #21250
16 lines
146 B
C++
16 lines
146 B
C++
#pragma once
|
|
|
|
namespace Foo {
|
|
|
|
class Math
|
|
{
|
|
public:
|
|
void add(int value);
|
|
int get_sum() const;
|
|
|
|
private:
|
|
int sum_ = 0;
|
|
};
|
|
|
|
} // namespace cs
|