Some checks failed
Build and Test / build (pull_request) Failing after 2m2s
Establish build infrastructure for Kindred-specific C++ features: - CreateGlobal.h: export macros (CreateExport, CreateGuiExport) - App/: CreateApp shared library (PyMOD_INIT_FUNC, Py::ExtensionModule) - Gui/: CreateGui shared library (links CreateApp + FreeCADGui) - CMakeLists.txt: add_subdirectory(App) + conditional add_subdirectory(Gui) Scaffold only — no features. Follows the Assembly module pattern. Existing Python Init.py/InitGui.py bootstrap unchanged.
12 lines
198 B
C++
12 lines
198 B
C++
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
#ifndef CREATE_PRECOMPILED_H
|
|
#define CREATE_PRECOMPILED_H
|
|
|
|
#include <FCConfig.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#endif // CREATE_PRECOMPILED_H
|