diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2023-11-16 19:36:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-11-17 12:59:05 (GMT) |
commit | a3a85524cd133888288689871e69da76f2267eda (patch) | |
tree | 1d0cccdf4bc6e94ad9a4317fc950082d6aa2f129 /Help | |
parent | d6c81467aad117a68ce80f76c9df811d18675a42 (diff) | |
download | CMake-a3a85524cd133888288689871e69da76f2267eda.zip CMake-a3a85524cd133888288689871e69da76f2267eda.tar.gz CMake-a3a85524cd133888288689871e69da76f2267eda.tar.bz2 |
fileapi: Fix file sets' base directories relative to top source
This field was added by commit b3e9fb67bb (file-api: support exporting
file set information, 2022-11-03, v3.26.0-rc1~389^2) but the relative
path convention used elsewhere was accidentally left out.
Fixes: #25422
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-file-api.7.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Help/manual/cmake-file-api.7.rst b/Help/manual/cmake-file-api.7.rst index 7ff9728..878a174 100644 --- a/Help/manual/cmake-file-api.7.rst +++ b/Help/manual/cmake-file-api.7.rst @@ -1088,7 +1088,9 @@ with members: ``baseDirectories`` A JSON array of strings specifying the base directories containing sources - in the file set. + in the file set. If the file is inside the top-level source directory + then the path is specified relative to that directory. Otherwise the path + is absolute. This field was added in codemodel version 2.5. |