mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 21:00:17 -06:00
This will allow JSON schemas for these two types of files to describe the version-specific content without requiring any outside information. Fixes: #27031
14 lines
456 B
C++
14 lines
456 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file LICENSE.rst or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <cm3p/json/value.h>
|
|
|
|
class cmFileAPI;
|
|
|
|
extern Json::Value cmFileAPICodemodelDump(cmFileAPI& fileAPI,
|
|
unsigned int majorVersion,
|
|
unsigned int minorVersion);
|