12 lines
504 B
C
12 lines
504 B
C
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
||
|
|
// SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
||
|
|
|
||
|
|
// Included from Widget.cpp, the module's implementation unit — nothing else
|
||
|
|
// sees it, so an edit here must rebuild that one object and nothing more.
|
||
|
|
//
|
||
|
|
// The space in the filename is deliberate: clang escapes it as `widget\ count.h`
|
||
|
|
// in the depfile, so a build that reads depfiles has to unescape make syntax
|
||
|
|
// rather than splitting the line on whitespace.
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#define WIDGET_COUNT 1
|