mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 02:08:27 +08:00
641
Help/command/cmake_path.rst
Normal file
641
Help/command/cmake_path.rst
Normal file
@@ -0,0 +1,641 @@
|
||||
cmake_path
|
||||
----------
|
||||
|
||||
.. versionadded:: 3.19
|
||||
|
||||
Filesystem path manipulation command.
|
||||
|
||||
This command is dedicated to the manipulation of objects of type path which
|
||||
represent paths on a filesystem. Only syntactic aspects of paths are handled:
|
||||
the pathname may represent a non-existing path or even one that is not allowed
|
||||
to exist on the current file system or OS.
|
||||
|
||||
For operations involving the filesystem, have a look at the :command:`file`
|
||||
command.
|
||||
|
||||
The path name has the following syntax:
|
||||
|
||||
1. ``root-name`` (optional): identifies the root on a filesystem with multiple
|
||||
roots (such as ``"C:"`` or ``"//myserver"``).
|
||||
|
||||
2. ``root-directory`` (optional): a directory separator that, if present, marks
|
||||
this path as absolute. If it is missing (and the first element other than
|
||||
the root name is a file name), then the path is relative.
|
||||
|
||||
Zero or more of the following:
|
||||
|
||||
3. ``file-name``: sequence of characters that aren't directory separators. This
|
||||
name may identify a file, a hard link, a symbolic link, or a directory. Two
|
||||
special file-names are recognized:
|
||||
|
||||
* ``dot``: the file name consisting of a single dot character ``.`` is a
|
||||
directory name that refers to the current directory.
|
||||
|
||||
* ``dot-dot``: the file name consisting of two dot characters ``..`` is a
|
||||
directory name that refers to the parent directory.
|
||||
|
||||
4. ``directory-separator``: the forward slash character ``/``. If this
|
||||
character is repeated, it is treated as a single directory separator:
|
||||
``/usr///////lib`` is the same as ``/usr/lib``.
|
||||
|
||||
.. _EXTENSION_DEF:
|
||||
|
||||
A ``file-name`` can have an extension. By default, the extension is defined as
|
||||
the sub-string beginning at the leftmost period (including the period) and
|
||||
until the end of the pathname. When the option ``LAST_ONLY`` is specified, the
|
||||
extension is the sub-string beginning at the rightmost period.
|
||||
|
||||
.. note::
|
||||
|
||||
``cmake_path`` command handles paths in the format of the build system, not
|
||||
the target system. So this is not generally applicable to the target system
|
||||
in cross-compiling environment.
|
||||
|
||||
For all commands, ``<path>`` placeholder expect a variable name. An error will
|
||||
be raised if the variable does not exist, except for `APPEND`_ and
|
||||
`CMAKE_PATH`_ sub-commands. ``<input>`` placeholder expect a string literal.
|
||||
``[<input>...]`` placeholder expect zero or more arguments. ``<output>``
|
||||
placeholder expect a variable name.
|
||||
|
||||
.. note::
|
||||
|
||||
``cmake_path`` command does not support list of paths. The ``<path>``
|
||||
placeholder must store only one path name.
|
||||
|
||||
To initialize a path variable, three possibilities can be used:
|
||||
|
||||
1. :command:`set` command.
|
||||
2. :ref:`cmake_path(APPEND) <APPEND>` command. Can be used to build a path from
|
||||
already available path fragments.
|
||||
3. :ref:`cmake_path(CMAKE_PATH) <CMAKE_PATH>` command. Mainly used to build a
|
||||
path variable from a native path.
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
# To build the path "${CMAKE_CURRENT_SOURCE_DIR}/data"
|
||||
|
||||
set (path1 "${CMAKE_CURRENT_SOURCE_DIR}/data")
|
||||
|
||||
cmake_path(APPEND path2 "${CMAKE_CURRENT_SOURCE_DIR}" "data")
|
||||
|
||||
cmake_path(CMAKE_PATH path3 "${CMAKE_CURRENT_SOURCE_DIR}/data")
|
||||
|
||||
`Modification`_ and `Generation`_ sub-commands store the result in-place or in
|
||||
the variable specified by ``OUTPUT_VARIABLE`` option. All other sub-commands,
|
||||
except `CMAKE_PATH`_, store the result in the required ``<output>`` variable.
|
||||
|
||||
Sub-commands supporting ``NORMALIZE`` option will :ref:`normalize <NORMAL_PATH>`
|
||||
the path.
|
||||
|
||||
Synopsis
|
||||
^^^^^^^^
|
||||
|
||||
.. parsed-literal::
|
||||
|
||||
`Decomposition`_
|
||||
cmake_path(`GET`_ <path> :ref:`ROOT_NAME <GET_ROOT_NAME>` <output>)
|
||||
cmake_path(`GET`_ <path> :ref:`ROOT_DIRECTORY <GET_ROOT_DIRECTORY>` <output>)
|
||||
cmake_path(`GET`_ <path> :ref:`ROOT_PATH <GET_ROOT_PATH>` <output>)
|
||||
cmake_path(`GET`_ <path> :ref:`FILENAME <GET_FILENAME>` <output>)
|
||||
cmake_path(`GET`_ <path> :ref:`EXTENSION <GET_EXTENSION>` [LAST_ONLY] <output>)
|
||||
cmake_path(`GET`_ <path> :ref:`STEM <GET_STEM>` [LAST_ONLY] <output>)
|
||||
cmake_path(`GET`_ <path> :ref:`RELATIVE_PATH <GET_RELATIVE_PATH>` <output>)
|
||||
cmake_path(`GET`_ <path> :ref:`PARENT_PATH <GET_PARENT_PATH>` <output>)
|
||||
|
||||
`Modification`_
|
||||
cmake_path(`APPEND`_ <path> [<input>...] [OUTPUT_VARIABLE <output>])
|
||||
cmake_path(`CONCAT`_ <path> [<input>...] [OUTPUT_VARIABLE <output>])
|
||||
cmake_path(`REMOVE_FILENAME`_ <path> [OUTPUT_VARIABLE <output>])
|
||||
cmake_path(`REPLACE_FILENAME`_ <path> <input> [OUTPUT_VARIABLE <output>])
|
||||
cmake_path(`REMOVE_EXTENSION`_ <path> [LAST_ONLY]
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
cmake_path(`REPLACE_EXTENSION`_ <path> [LAST_ONLY] <input>
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
|
||||
`Generation`_
|
||||
cmake_path(`NORMAL_PATH`_ <path> [OUTPUT_VARIABLE <output>])
|
||||
cmake_path(`RELATIVE_PATH`_ <path> [BASE_DIRECTORY <path>]
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
cmake_path(`PROXIMATE_PATH`_ <path> [BASE_DIRECTORY <path>]
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
cmake_path(`ABSOLUTE_PATH`_ <path> [BASE_DIRECTORY <path>] [NORMALIZE]
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
|
||||
`Conversion`_
|
||||
cmake_path(`CMAKE_PATH`_ <path> [NORMALIZE] <input>)
|
||||
cmake_path(`NATIVE_PATH`_ <path> [NORMALIZE] <output>)
|
||||
cmake_path(`CONVERT`_ <input> `TO_CMAKE_PATH_LIST`_ <output>)
|
||||
cmake_path(`CONVERT`_ <input> `TO_NATIVE_PATH_LIST`_ <output>)
|
||||
|
||||
`Comparison`_
|
||||
cmake_path(`COMPARE`_ <path> <OP> <input> <output>)
|
||||
|
||||
`Query`_
|
||||
cmake_path(`HAS_ROOT_NAME`_ <path> <output>)
|
||||
cmake_path(`HAS_ROOT_DIRECTORY`_ <path> <output>)
|
||||
cmake_path(`HAS_ROOT_PATH`_ <path> <output>)
|
||||
cmake_path(`HAS_FILENAME`_ <path> <output>)
|
||||
cmake_path(`HAS_EXTENSION`_ <path> <output>)
|
||||
cmake_path(`HAS_STEM`_ <path> <output>)
|
||||
cmake_path(`HAS_RELATIVE_PATH`_ <path> <output>)
|
||||
cmake_path(`HAS_PARENT_PATH`_ <path> <output>)
|
||||
cmake_path(`IS_ABSOLUTE`_ <path> <output>)
|
||||
cmake_path(`IS_RELATIVE`_ <path> <output>)
|
||||
cmake_path(`IS_PREFIX`_ <path> <input> [NORMALIZE] <output>)
|
||||
|
||||
`Hashing`_
|
||||
cmake_path(`HASH`_ <path> [NORMALIZE] <output>)
|
||||
|
||||
Decomposition
|
||||
^^^^^^^^^^^^^
|
||||
|
||||
.. _GET:
|
||||
.. _GET_ROOT_NAME:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(GET <path> ROOT_NAME <output>)
|
||||
|
||||
Returns the root name of the path. If the path does not include a root name,
|
||||
returns an empty path.
|
||||
|
||||
.. _GET_ROOT_DIRECTORY:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(GET <path> ROOT_DIRECTORY <output>)
|
||||
|
||||
Returns the root directory of the path. If the path does not include a root
|
||||
directory, returns an empty path.
|
||||
|
||||
.. _GET_ROOT_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(GET <path> ROOT_PATH <output>)
|
||||
|
||||
Returns the root path of the path. If the path does not include a root path,
|
||||
returns an empty path.
|
||||
|
||||
Effectively, returns the following: ``root-name / root-directory``.
|
||||
|
||||
.. _GET_FILENAME:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(GET <path> FILENAME <output>)
|
||||
|
||||
Returns the filename component of the path. If the path ends with a
|
||||
``directory-separator``, there is no filename, so returns an empty path.
|
||||
|
||||
.. _GET_EXTENSION:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(GET <path> EXTENSION [LAST_ONLY] <output>)
|
||||
|
||||
Returns the :ref:`extension <EXTENSION_DEF>` of the filename component.
|
||||
|
||||
If the ``FILENAME`` component of the path contains a period (``.``), and is not
|
||||
one of the special filesystem elements ``dot`` or ``dot-dot``, then the
|
||||
:ref:`extension <EXTENSION_DEF>` is returned.
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
set (path "name.ext1.ext2")
|
||||
cmake_path (GET path EXTENSION result)
|
||||
cmake_path (GET path EXTENSION LAST_ONLY result)
|
||||
|
||||
First extension extraction will return ``.ex1.ext2``, while the second one will
|
||||
return only ``.ext2``.
|
||||
|
||||
The following exceptions apply:
|
||||
|
||||
* If the first character in the filename is a period, that period is ignored
|
||||
(a filename like ``".profile"`` is not treated as an extension).
|
||||
|
||||
* If the pathname is either ``.`` or ``..``, or if ``FILENAME`` component
|
||||
does not contain the ``.`` character, then an empty path is returned.
|
||||
|
||||
.. _GET_STEM:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(GET <path> STEM [LAST_ONLY] <output>)
|
||||
|
||||
Returns the ``FILENAME`` component of the path stripped of its
|
||||
:ref:`extension <EXTENSION_DEF>`.
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
set (path "name.ext1.ext2")
|
||||
cmake_path (GET path STEM result)
|
||||
cmake_path (GET path STEM LAST_ONLY result)
|
||||
|
||||
First stem extraction will return only ``name``, while the second one will
|
||||
return ``name.ext1``.
|
||||
|
||||
The following exceptions apply:
|
||||
|
||||
* If the first character in the filename is a period, that period is ignored
|
||||
(a filename like ``".profile"`` is not treated as an extension).
|
||||
|
||||
* If the filename is one of the special filesystem components ``dot`` or
|
||||
``dot-dot``, or if it has no periods, the function returns the entire
|
||||
``FILENAME`` component.
|
||||
|
||||
.. _GET_RELATIVE_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(GET <path> RELATIVE_PATH <output>)
|
||||
|
||||
Returns path relative to ``root-path``, that is, a pathname composed of
|
||||
every component of ``<path>`` after ``root-path``. If ``<path>`` is an empty
|
||||
path, returns an empty path.
|
||||
|
||||
.. _GET_PARENT_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(GET <path> PARENT_PATH <output>)
|
||||
|
||||
Returns the path to the parent directory.
|
||||
|
||||
If `HAS_RELATIVE_PATH`_ sub-command returns false, the result is a copy of
|
||||
``<path>``. Otherwise, the result is ``<path>`` with one fewer element.
|
||||
|
||||
Modification
|
||||
^^^^^^^^^^^^
|
||||
|
||||
.. _APPEND:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(APPEND <path> [<input>...] [OUTPUT_VARIABLE <output>])
|
||||
|
||||
Append all the ``<input>`` arguments to the ``<path>`` using ``/`` as
|
||||
``directory-separator``.
|
||||
|
||||
For each ``<input>`` argument, the following algorithm (pseudo-code) applies:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
IF (<input>.is_absolute() OR
|
||||
(<input>.has_root_name() AND
|
||||
NOT <input>.root_name() STREQUAL <path>.root_name()))
|
||||
replaces <path> with <input>
|
||||
RETURN()
|
||||
ENDIF()
|
||||
|
||||
IF (<input>.has_root_directory())
|
||||
remove any root-directory and the entire relative path from <path>
|
||||
ELSEIF (<path>.has_filename() OR
|
||||
(NOT <path>.has_root_directory() OR <path>.is_absolute()))
|
||||
appends directory-separator to <path>
|
||||
ENDIF()
|
||||
|
||||
appends <input> omitting any root-name to <path>
|
||||
|
||||
.. _CONCAT:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(CONCAT <path> [<input>...] [OUTPUT_VARIABLE <output>])
|
||||
|
||||
Concatenates all the ``<input>`` arguments to the ``<path>`` without
|
||||
``directory-separator``.
|
||||
|
||||
.. _REMOVE_FILENAME:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(REMOVE_FILENAME <path> [OUTPUT_VARIABLE <output>])
|
||||
|
||||
Removes a single filename component (as returned by
|
||||
:ref:`GET ... FILENAME <GET_FILENAME>`) from ``<path>``.
|
||||
|
||||
After this function returns, if change is done in-place, `HAS_FILENAME`_
|
||||
returns false for ``<path>``.
|
||||
|
||||
.. _REPLACE_FILENAME:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(REPLACE_FILENAME <path> <input> [OUTPUT_VARIABLE <output>])
|
||||
|
||||
Replaces a single filename component from ``<path>`` with ``<input>``.
|
||||
|
||||
Equivalent to the following:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(REMOVE_FILENAME path)
|
||||
cmake_path(APPEND path "replacement");
|
||||
|
||||
If ``<path>`` has no filename component (`HAS_FILENAME`_ returns false), the
|
||||
path is unchanged.
|
||||
|
||||
.. _REMOVE_EXTENSION:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(REMOVE_EXTENSION <path> [LAST_ONLY] [OUTPUT_VARIABLE <output>])
|
||||
|
||||
Removes the :ref:`extension <EXTENSION_DEF>`, if any, from ``<path>``.
|
||||
|
||||
.. _REPLACE_EXTENSION:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(REPLACE_EXTENSION <path> [LAST_ONLY] <input>
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
|
||||
Replaces the :ref:`extension <EXTENSION_DEF>` with ``<input>``.
|
||||
|
||||
First, if ``<path>`` has an :ref:`extension <EXTENSION_DEF>` (`HAS_EXTENSION`_
|
||||
is true), it is removed. Then, a ``dot`` character is appended to ``<path>``,
|
||||
if ``<input>`` is not empty or does not begin with a ``dot`` character.
|
||||
|
||||
Then ``<input>`` is appended as if `CONCAT`_ was used.
|
||||
|
||||
Generation
|
||||
^^^^^^^^^^
|
||||
|
||||
.. _NORMAL_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(NORMAL_PATH <path> [OUTPUT_VARIABLE <output>])
|
||||
|
||||
Normalize ``<path>``.
|
||||
|
||||
A path can be normalized by following this algorithm:
|
||||
|
||||
1. If the path is empty, stop (normal form of an empty path is an empty
|
||||
path).
|
||||
2. Replace each ``directory-separator`` (which may consist of multiple
|
||||
separators) with a single ``/``.
|
||||
3. Replace each ``directory-separator`` character in the ``root-name`` with
|
||||
``/``.
|
||||
4. Remove each ``dot`` and any immediately following ``directory-separator``.
|
||||
5. Remove each non-dot-dot filename immediately followed by a
|
||||
``directory-separator`` and a ``dot-dot``, along with any immediately
|
||||
following ``directory-separator``.
|
||||
6. If there is ``root-directory``, remove all ``dot-dots`` and any
|
||||
``directory-separators`` immediately following them.
|
||||
7. If the last filename is ``dot-dot``, remove any trailing
|
||||
``directory-separator``.
|
||||
8. If the path is empty, add a ``dot`` (normal form of ``./`` is ``.``).
|
||||
|
||||
.. _cmake_path-RELATIVE_PATH:
|
||||
.. _RELATIVE_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(RELATIVE_PATH <path> [BASE_DIRECTORY <path>]
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
|
||||
Returns ``<path>`` made relative to ``BASE_DIRECTORY`` argument. If
|
||||
``BASE_DIRECTORY`` is not specified, the default base directory will be
|
||||
:variable:`CMAKE_CURRENT_SOURCE_DIR`.
|
||||
|
||||
For reference, the algorithm used to compute the relative path is described
|
||||
`here <https://en.cppreference.com/w/cpp/filesystem/path/lexically_normal>`_.
|
||||
|
||||
.. _PROXIMATE_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(PROXIMATE_PATH <path> [BASE_DIRECTORY <path>]
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
|
||||
If the value of `RELATIVE_PATH`_ is not an empty path, return
|
||||
it. Otherwise return ``<path>``.
|
||||
|
||||
If ``BASE_DIRECTORY`` is not specified, the default base directory will be
|
||||
:variable:`CMAKE_CURRENT_SOURCE_DIR`.
|
||||
|
||||
.. _ABSOLUTE_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(ABSOLUTE_PATH <path> [BASE_DIRECTORY <path>] [NORMALIZE]
|
||||
[OUTPUT_VARIABLE <output>])
|
||||
|
||||
If ``<path>`` is a relative path, it is evaluated relative to the given base
|
||||
directory specified by ``BASE_DIRECTORY`` option. If no base directory is
|
||||
provided, the default base directory will be
|
||||
:variable:`CMAKE_CURRENT_SOURCE_DIR`.
|
||||
|
||||
When ``NORMALIZE`` option is specified, the path is :ref:`normalized
|
||||
<NORMAL_PATH>` after the path computation.
|
||||
|
||||
Because ``cmake_path`` does not access to the filesystem, symbolic links are
|
||||
not resolved. To compute a real path, use :command:`get_filename_component`
|
||||
command with ``REALPATH`` sub-command.
|
||||
|
||||
Conversion
|
||||
^^^^^^^^^^
|
||||
|
||||
.. _cmake_path-CMAKE_PATH:
|
||||
.. _CMAKE_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(CMAKE_PATH <path> [NORMALIZE] <input>])
|
||||
|
||||
Converts a native ``<input>`` path into cmake-style path with forward-slashes
|
||||
(``/``). On Windows, the long filename marker is taken into account.
|
||||
|
||||
When ``NORMALIZE`` option is specified, the path is :ref:`normalized
|
||||
<NORMAL_PATH>` before the conversion.
|
||||
|
||||
.. _cmake_path-NATIVE_PATH:
|
||||
.. _NATIVE_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(NATIVE_PATH <path> [NORMALIZE] <output>)
|
||||
|
||||
Converts a cmake-style ``<path>`` into a native
|
||||
path with platform-specific slashes (``\`` on Windows and ``/`` elsewhere).
|
||||
|
||||
When ``NORMALIZE`` option is specified, the path is :ref:`normalized
|
||||
<NORMAL_PATH>` before the conversion.
|
||||
|
||||
.. _CONVERT:
|
||||
.. _cmake_path-TO_CMAKE_PATH_LIST:
|
||||
.. _TO_CMAKE_PATH_LIST:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(CONVERT <input> TO_CMAKE_PATH_LIST <output> [NORMALIZE])
|
||||
|
||||
Converts a native ``<input>`` path into cmake-style path with forward-slashes
|
||||
(``/``). On Windows, the long filename marker is taken into account. The input can
|
||||
be a single path or a system search path like ``$ENV{PATH}``. A search path
|
||||
will be converted to a cmake-style list separated by ``;`` characters. The
|
||||
result of the conversion is stored in the ``<output>`` variable.
|
||||
|
||||
When ``NORMALIZE`` option is specified, the path is :ref:`normalized
|
||||
<NORMAL_PATH>` before the conversion.
|
||||
|
||||
.. _cmake_path-TO_NATIVE_PATH_LIST:
|
||||
.. _TO_NATIVE_PATH_LIST:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(CONVERT <input> TO_NATIVE_PATH_LIST <output> [NORMALIZE])
|
||||
|
||||
Converts a cmake-style ``<input>`` path into a native path with
|
||||
platform-specific slashes (``\`` on Windows and ``/`` elsewhere). The input can
|
||||
be a single path or a cmake-style list. A list will be converted into a native
|
||||
search path. The result of the conversion is stored in the ``<output>``
|
||||
variable.
|
||||
|
||||
When ``NORMALIZE`` option is specified, the path is :ref:`normalized
|
||||
<NORMAL_PATH>` before the conversion.
|
||||
|
||||
Comparison
|
||||
^^^^^^^^^^
|
||||
|
||||
.. _COMPARE:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(COMPARE <path> EQUAL <input> <output>)
|
||||
cmake_path(COMPARE <path> NOT_EQUAL <input> <output>)
|
||||
|
||||
Compares the lexical representations of the path and another path.
|
||||
|
||||
For testing equality, the following algorithm (pseudo-code) apply:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
IF (NOT <path>.root_name() STREQUAL <input>.root_name())
|
||||
returns FALSE
|
||||
ELSEIF (<path>.has_root_directory() XOR <input>.has_root_directory())
|
||||
returns FALSE
|
||||
ENDIF()
|
||||
|
||||
returns TRUE or FALSE if the relative portion of <path> is
|
||||
lexicographically equal or not to the relative portion of <input>.
|
||||
Comparison is performed path component-wise
|
||||
|
||||
Query
|
||||
^^^^^
|
||||
|
||||
.. _HAS_ROOT_NAME:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HAS_ROOT_NAME <path> <output>)
|
||||
|
||||
Checks if ``<path>`` has ``root-name``.
|
||||
|
||||
.. _HAS_ROOT_DIRECTORY:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HAS_ROOT_DIRECTORY <path> <output>)
|
||||
|
||||
Checks if ``<path>`` has ``root-directory``.
|
||||
|
||||
.. _HAS_ROOT_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HAS_ROOT_PATH <path> <output>)
|
||||
|
||||
Checks if ``<path>`` has root path.
|
||||
|
||||
Effectively, checks the following: ``root-name / root-directory``.
|
||||
|
||||
.. _HAS_FILENAME:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HAS_FILENAME <path> <output>)
|
||||
|
||||
Checks if ``<path>`` has ``file-name``.
|
||||
|
||||
.. _HAS_EXTENSION:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HAS_EXTENSION <path> <output>)
|
||||
|
||||
Checks if ``<path>`` has an :ref:`<extension <EXTENSION_DEF>`. If the first
|
||||
character in the filename is a period, it is not treated as an extension (for
|
||||
example ".profile").
|
||||
|
||||
.. _HAS_STEM:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HAS_STEM <path> <output>)
|
||||
|
||||
Checks if ``<path>`` has stem.
|
||||
|
||||
.. _HAS_RELATIVE_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HAS_RELATIVE_PATH <path> <output>)
|
||||
|
||||
Checks if ``<path>`` has relative path.
|
||||
|
||||
.. _HAS_PARENT_PATH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HAS_PARENT_PATH <path> <output>)
|
||||
|
||||
Checks if ``<path>`` has parent path.
|
||||
|
||||
.. _IS_ABSOLUTE:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(IS_ABSOLUTE <path> <output>)
|
||||
|
||||
Checks if ``<path>`` is absolute.
|
||||
|
||||
An absolute path is a path that unambiguously identifies the location of a file
|
||||
without reference to an additional starting location.
|
||||
|
||||
.. _IS_RELATIVE:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(IS_RELATIVE <path> <output>)
|
||||
|
||||
Checks if path is relative.
|
||||
|
||||
.. _IS_PREFIX:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(IS_PREFIX <path> <input> [NORMALIZE] <output>)
|
||||
|
||||
Checks if ``<path>`` is the prefix of ``<input>``.
|
||||
|
||||
When ``NORMALIZE`` option is specified, the paths are :ref:`normalized
|
||||
<NORMAL_PATH>` before the check.
|
||||
|
||||
Hashing
|
||||
^^^^^^^
|
||||
|
||||
.. _HASH:
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
cmake_path(HASH <path> [NORMALIZE] <output>)
|
||||
|
||||
Compute hash value of ``<path>`` such that if for two paths (``p1`` and ``p2``)
|
||||
are equal (:ref:`COMPARE ... EQUAL <COMPARE>`) then hash value of p1 is equal
|
||||
to hash value of p2.
|
||||
|
||||
When ``NORMALIZE`` option is specified, the paths are :ref:`normalized
|
||||
<NORMAL_PATH>` before the check.
|
@@ -3,6 +3,21 @@ file
|
||||
|
||||
File manipulation command.
|
||||
|
||||
This command is dedicated to file and path manipulation requiring access to the
|
||||
filesystem.
|
||||
|
||||
For other path manipulation, handling only syntactic aspects, have a look at
|
||||
:command:`cmake_path` command.
|
||||
|
||||
.. note::
|
||||
|
||||
The sub-commands `RELATIVE_PATH`_, `TO_CMAKE_PATH`_ and `TO_NATIVE_PATH`_ has
|
||||
been superseded, respectively, by sub-commands
|
||||
:ref:`RELATIVE_PATH <cmake_path-RELATIVE_PATH>`,
|
||||
:ref:`CONVERT ... TO_CMAKE_PATH_LIST <cmake_path-TO_CMAKE_PATH_LIST>` and
|
||||
:ref:`CONVERT ... TO_NATIVE_PATH_LIST <cmake_path-TO_NATIVE_PATH_LIST>` of
|
||||
:command:`cmake_path` command.
|
||||
|
||||
Synopsis
|
||||
^^^^^^^^
|
||||
|
||||
|
@@ -44,6 +44,11 @@ Paths are returned with forward slashes and have no trailing slashes. If the
|
||||
optional ``CACHE`` argument is specified, the result variable is added to the
|
||||
cache.
|
||||
|
||||
.. note::
|
||||
|
||||
All previous sub-commands, except ``REALPATH``, has been superseded by
|
||||
:command:`cmake_path` command.
|
||||
|
||||
.. code-block:: cmake
|
||||
|
||||
get_filename_component(<var> <FileName> PROGRAM [PROGRAM_ARGS <arg_var>] [CACHE])
|
||||
|
@@ -20,6 +20,7 @@ These commands are always available.
|
||||
/command/cmake_language
|
||||
/command/cmake_minimum_required
|
||||
/command/cmake_parse_arguments
|
||||
/command/cmake_path
|
||||
/command/cmake_policy
|
||||
/command/configure_file
|
||||
/command/continue
|
||||
|
5
Help/release/dev/cmake_path-command.rst
Normal file
5
Help/release/dev/cmake_path-command.rst
Normal file
@@ -0,0 +1,5 @@
|
||||
cmake_path-command
|
||||
------------------
|
||||
|
||||
* The :command:`cmake_path` command was added for operations on
|
||||
filesystem paths.
|
@@ -500,6 +500,8 @@ set(SRCS
|
||||
cmCMakeLanguageCommand.h
|
||||
cmCMakeMinimumRequired.cxx
|
||||
cmCMakeMinimumRequired.h
|
||||
cmCMakePathCommand.h
|
||||
cmCMakePathCommand.cxx
|
||||
cmCMakePolicyCommand.cxx
|
||||
cmCMakePolicyCommand.h
|
||||
cmConditionEvaluator.cxx
|
||||
|
@@ -1,6 +1,7 @@
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/cm_message_checks_compat.cmake)
|
||||
|
||||
function(cm_check_cxx_feature name)
|
||||
set(TRY_RUN_FEATURE "${ARGN}")
|
||||
string(TOUPPER ${name} FEATURE)
|
||||
if(NOT DEFINED CMake_HAVE_CXX_${FEATURE})
|
||||
cm_message_checks_compat(
|
||||
@@ -12,12 +13,26 @@ function(cm_check_cxx_feature name)
|
||||
else()
|
||||
set(maybe_cxx_standard "")
|
||||
endif()
|
||||
try_compile(CMake_HAVE_CXX_${FEATURE}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_CURRENT_LIST_DIR}/cm_cxx_${name}.cxx
|
||||
CMAKE_FLAGS ${maybe_cxx_standard}
|
||||
OUTPUT_VARIABLE OUTPUT
|
||||
)
|
||||
if (TRY_RUN_FEATURE)
|
||||
try_run(CMake_RUN_CXX_${FEATURE} CMake_COMPILE_CXX_${FEATURE}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_CURRENT_LIST_DIR}/cm_cxx_${name}.cxx
|
||||
CMAKE_FLAGS ${maybe_cxx_standard}
|
||||
OUTPUT_VARIABLE OUTPUT
|
||||
)
|
||||
if (CMake_RUN_CXX_${FEATURE} EQUAL "0" AND CMake_COMPILE_CXX_${FEATURE})
|
||||
set(CMake_HAVE_CXX_${FEATURE} ON CACHE INTERNAL "TRY_RUN" FORCE)
|
||||
else()
|
||||
set(CMake_HAVE_CXX_${FEATURE} OFF CACHE INTERNAL "TRY_RUN" FORCE)
|
||||
endif()
|
||||
else()
|
||||
try_compile(CMake_HAVE_CXX_${FEATURE}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_CURRENT_LIST_DIR}/cm_cxx_${name}.cxx
|
||||
CMAKE_FLAGS ${maybe_cxx_standard}
|
||||
OUTPUT_VARIABLE OUTPUT
|
||||
)
|
||||
endif()
|
||||
set(check_output "${OUTPUT}")
|
||||
# Filter out MSBuild output that looks like a warning.
|
||||
string(REGEX REPLACE " +0 Warning\\(s\\)" "" check_output "${check_output}")
|
||||
@@ -64,7 +79,7 @@ if(CMake_HAVE_CXX_MAKE_UNIQUE)
|
||||
endif()
|
||||
cm_check_cxx_feature(unique_ptr)
|
||||
if (NOT CMAKE_CXX_STANDARD LESS "17")
|
||||
cm_check_cxx_feature(filesystem)
|
||||
cm_check_cxx_feature(filesystem TRY_RUN)
|
||||
else()
|
||||
set(CMake_HAVE_CXX_FILESYSTEM FALSE)
|
||||
endif()
|
||||
|
@@ -3,8 +3,25 @@
|
||||
|
||||
int main()
|
||||
{
|
||||
std::filesystem::path p0(L"/a/b/c");
|
||||
|
||||
std::filesystem::path p1("/a/b/c");
|
||||
std::filesystem::path p2("/a/b/c");
|
||||
if (p1 != p2) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
return p1 == p2 ? 0 : 1;
|
||||
#if defined(_WIN32)
|
||||
std::filesystem::path p3("//host/a/b/../c");
|
||||
if (p3.lexically_normal().generic_string() != "//host/a/c") {
|
||||
return 1;
|
||||
}
|
||||
|
||||
std::filesystem::path p4("c://a/.///b/../");
|
||||
if (p4.lexically_normal().generic_string() != "c:/a/") {
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
1019
Source/cmCMakePathCommand.cxx
Normal file
1019
Source/cmCMakePathCommand.cxx
Normal file
File diff suppressed because it is too large
Load Diff
14
Source/cmCMakePathCommand.h
Normal file
14
Source/cmCMakePathCommand.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "cmConfigure.h" // IWYU pragma: keep
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
bool cmCMakePathCommand(std::vector<std::string> const& args,
|
||||
cmExecutionStatus& status);
|
@@ -17,6 +17,7 @@
|
||||
#include "cmBreakCommand.h"
|
||||
#include "cmBuildCommand.h"
|
||||
#include "cmCMakeMinimumRequired.h"
|
||||
#include "cmCMakePathCommand.h"
|
||||
#include "cmCMakePolicyCommand.h"
|
||||
#include "cmCommand.h"
|
||||
#include "cmConfigureFileCommand.h"
|
||||
@@ -120,6 +121,7 @@ void GetScriptingCommands(cmState* state)
|
||||
{
|
||||
state->AddBuiltinCommand("break", cmBreakCommand);
|
||||
state->AddBuiltinCommand("cmake_minimum_required", cmCMakeMinimumRequired);
|
||||
state->AddBuiltinCommand("cmake_path", cmCMakePathCommand);
|
||||
state->AddBuiltinCommand("cmake_policy", cmCMakePolicyCommand);
|
||||
state->AddBuiltinCommand("configure_file", cmConfigureFileCommand);
|
||||
state->AddBuiltinCommand("continue", cmContinueCommand);
|
||||
|
@@ -305,6 +305,7 @@ add_RunCMake_test(export)
|
||||
add_RunCMake_test(cmake_language)
|
||||
add_RunCMake_test(cmake_minimum_required)
|
||||
add_RunCMake_test(cmake_parse_arguments)
|
||||
add_RunCMake_test(cmake_path)
|
||||
add_RunCMake_test(continue)
|
||||
add_executable(color_warning color_warning.c)
|
||||
add_RunCMake_test(ctest_build -DCOLOR_WARNING=$<TARGET_FILE:color_warning>)
|
||||
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
39
Tests/RunCMake/cmake_path/ABSOLUTE_PATH.cmake
Normal file
39
Tests/RunCMake/cmake_path/ABSOLUTE_PATH.cmake
Normal file
@@ -0,0 +1,39 @@
|
||||
|
||||
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
||||
unset (errors)
|
||||
|
||||
set (path "../../a/d")
|
||||
cmake_path(ABSOLUTE_PATH path BASE_DIRECTORY "/x/y/a/f")
|
||||
if (NOT path STREQUAL "/x/y/a/f/../../a/d")
|
||||
list (APPEND errors "'${path}' instead of '/x/y/a/f/../../a/d'")
|
||||
endif()
|
||||
|
||||
set (path "../../a/d")
|
||||
cmake_path(ABSOLUTE_PATH path BASE_DIRECTORY "/x/y/a/f" NORMALIZE)
|
||||
if (NOT path STREQUAL "/x/y/a/d")
|
||||
list (APPEND errors "'${path}' instead of '/x/y/a/d'")
|
||||
endif()
|
||||
|
||||
set (path "../../a/d")
|
||||
cmake_path(ABSOLUTE_PATH path BASE_DIRECTORY "/x/y/a/f" NORMALIZE OUTPUT_VARIABLE output)
|
||||
if (NOT path STREQUAL "../../a/d")
|
||||
list (APPEND errors "input changed unexpectedly")
|
||||
endif()
|
||||
if (NOT output STREQUAL "/x/y/a/d")
|
||||
list (APPEND errors "'${output}' instead of '/x/y/a/d'")
|
||||
endif()
|
||||
|
||||
set (path "/a/d/../e")
|
||||
cmake_path(ABSOLUTE_PATH path BASE_DIRECTORY "/x/y/a/f")
|
||||
if (NOT path STREQUAL "/a/d/../e")
|
||||
list (APPEND errors "'${path}' instead of '/a/d/../e'")
|
||||
endif()
|
||||
|
||||
set (path "/a/d/../e")
|
||||
cmake_path(ABSOLUTE_PATH path BASE_DIRECTORY "/x/y/a/f" NORMALIZE)
|
||||
if (NOT path STREQUAL "/a/e")
|
||||
list (APPEND errors "'${path}' instead of '/a/e'")
|
||||
endif()
|
||||
|
||||
|
||||
check_errors (ABSOLUTE_PATH ${errors})
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
1
Tests/RunCMake/cmake_path/APPEND-wrong-path-result.txt
Normal file
1
Tests/RunCMake/cmake_path/APPEND-wrong-path-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
77
Tests/RunCMake/cmake_path/APPEND.cmake
Normal file
77
Tests/RunCMake/cmake_path/APPEND.cmake
Normal file
@@ -0,0 +1,77 @@
|
||||
|
||||
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
||||
unset (errors)
|
||||
|
||||
cmake_path (APPEND path "/a/b" "c")
|
||||
if (NOT path STREQUAL "/a/b/c")
|
||||
list (APPEND errors "'${path}' instead of '/a/b/c'")
|
||||
endif()
|
||||
|
||||
set (path "/a/b")
|
||||
cmake_path (APPEND path "c")
|
||||
if (NOT path STREQUAL "/a/b/c")
|
||||
list (APPEND errors "'${path}' instead of '/a/b/c'")
|
||||
endif()
|
||||
|
||||
cmake_path (APPEND path "x/y" "z" OUTPUT_VARIABLE output)
|
||||
if (NOT path STREQUAL "/a/b/c")
|
||||
list (APPEND errors "input changed unexpectedly")
|
||||
endif()
|
||||
if (NOT output STREQUAL "/a/b/c/x/y/z")
|
||||
list (APPEND errors "'${output}' instead of '/a/b/c/x/y/z'")
|
||||
endif()
|
||||
|
||||
set (path "a")
|
||||
cmake_path (APPEND path "")
|
||||
if (NOT path STREQUAL "a/")
|
||||
list (APPEND errors "'${path}' instead of 'a/'")
|
||||
endif()
|
||||
|
||||
cmake_path (APPEND path "/b")
|
||||
if (NOT path STREQUAL "/b")
|
||||
list (APPEND errors "'${path}' instead of '/b'")
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
set (path "a")
|
||||
cmake_path (APPEND path "c:/b")
|
||||
if (NOT path STREQUAL "c:/b")
|
||||
list (APPEND errors "'${path}' instead of 'c:/b'")
|
||||
endif()
|
||||
|
||||
set (path "a")
|
||||
cmake_path (APPEND path "c:")
|
||||
if (NOT path STREQUAL "c:")
|
||||
list (APPEND errors "'${path}' instead of 'c:'")
|
||||
endif()
|
||||
cmake_path (APPEND path "")
|
||||
if (NOT path STREQUAL "c:")
|
||||
list (APPEND errors "'${path}' instead of 'c:'")
|
||||
endif()
|
||||
|
||||
set (path "c:a")
|
||||
cmake_path (APPEND path "/b")
|
||||
if (NOT path STREQUAL "c:/b")
|
||||
list (APPEND errors "'${path}' instead of 'c:/b'")
|
||||
endif()
|
||||
|
||||
set (path "c:a")
|
||||
cmake_path (APPEND path "c:b")
|
||||
if (NOT path STREQUAL "c:a/b")
|
||||
list (APPEND errors "'${path}' instead of 'c:a/b'")
|
||||
endif()
|
||||
|
||||
set (path "//host")
|
||||
cmake_path (APPEND path "b")
|
||||
if (NOT path STREQUAL "//host/b")
|
||||
list (APPEND errors "'${path}' instead of '//host/b'")
|
||||
endif()
|
||||
|
||||
set (path "//host/")
|
||||
cmake_path (APPEND path "b")
|
||||
if (NOT path STREQUAL "//host/b")
|
||||
list (APPEND errors "'${path}' instead of '//host/b'")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
check_errors (APPEND ${errors})
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
43
Tests/RunCMake/cmake_path/CMAKE_PATH.cmake
Normal file
43
Tests/RunCMake/cmake_path/CMAKE_PATH.cmake
Normal file
@@ -0,0 +1,43 @@
|
||||
|
||||
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
||||
unset (errors)
|
||||
|
||||
cmake_path(CMAKE_PATH path "/x/y/z/../../a/d")
|
||||
if (NOT path STREQUAL "/x/y/z/../../a/d")
|
||||
list (APPEND errors "'${path}' instead of '/x/y/z/../../a/d'")
|
||||
endif()
|
||||
cmake_path(CMAKE_PATH path NORMALIZE "/x/y/z/../../a/d")
|
||||
if (NOT path STREQUAL "/x/a/d")
|
||||
list (APPEND errors "'${path}' instead of '/x/a/d'")
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
cmake_path(CMAKE_PATH path "/x\\y/z\\..\\../a/d")
|
||||
if (NOT path STREQUAL "/x/y/z/../../a/d")
|
||||
list (APPEND errors "'${path}' instead of '/x/y/z/../../a/d'")
|
||||
endif()
|
||||
cmake_path(CMAKE_PATH path NORMALIZE "/x\\y/z\\..\\../a/d")
|
||||
if (NOT path STREQUAL "/x/a/d")
|
||||
list (APPEND errors "'${path}' instead of '/x/a/d'")
|
||||
endif()
|
||||
|
||||
cmake_path(CMAKE_PATH path "//?/c:/x\\y/z\\..\\../a/d")
|
||||
if (NOT path STREQUAL "c:/x/y/z/../../a/d")
|
||||
list (APPEND errors "'${path}' instead of 'c:/x/y/z/../../a/d'")
|
||||
endif()
|
||||
cmake_path(CMAKE_PATH path NORMALIZE "//?/c:/x\\y/z\\..\\../a/d")
|
||||
if (NOT path STREQUAL "c:/x/a/d")
|
||||
list (APPEND errors "'${path}' instead of 'c:/x/a/d'")
|
||||
endif()
|
||||
|
||||
cmake_path(CMAKE_PATH path "\\\\?\\UNC/host/x\\y/z\\..\\../a/d")
|
||||
if (NOT path STREQUAL "//host/x/y/z/../../a/d")
|
||||
list (APPEND errors "'${path}' instead of '//host/x/y/z/../../a/d'")
|
||||
endif()
|
||||
cmake_path(CMAKE_PATH path NORMALIZE "\\\\?\\UNC\\host/x\\y/z\\..\\../a/d")
|
||||
if (NOT path STREQUAL "//host/x/a/d")
|
||||
list (APPEND errors "'${path}' instead of '//host/x/a/d'")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
check_errors (CMAKE_PATH ${errors})
|
3
Tests/RunCMake/cmake_path/CMakeLists.txt
Normal file
3
Tests/RunCMake/cmake_path/CMakeLists.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
cmake_minimum_required(VERSION 3.18...3.19)
|
||||
project(${RunCMake_TEST} NONE)
|
||||
include(${RunCMake_TEST}.cmake)
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1,2 @@
|
||||
CMake Error at COMPARE-wrong-operator.cmake:[0-9]+ \(cmake_path\):
|
||||
cmake_path COMPARE called with an unknown comparison operator: FOO.
|
3
Tests/RunCMake/cmake_path/COMPARE-wrong-operator.cmake
Normal file
3
Tests/RunCMake/cmake_path/COMPARE-wrong-operator.cmake
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
set (path "/a/b")
|
||||
cmake_path(COMPARE path FOO "/other" output)
|
22
Tests/RunCMake/cmake_path/COMPARE.cmake
Normal file
22
Tests/RunCMake/cmake_path/COMPARE.cmake
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
||||
unset (errors)
|
||||
|
||||
set (path "a///b/c")
|
||||
cmake_path(COMPARE path EQUAL "a/b/c" output)
|
||||
if (NOT output)
|
||||
list (APPEND errors "'${path}' not equal to 'a/b/c'")
|
||||
endif()
|
||||
|
||||
set (path "a/b/d/../c")
|
||||
cmake_path(COMPARE path NOT_EQUAL "a/b/c" output)
|
||||
if (NOT output)
|
||||
list (APPEND errors "'${path}' equal to 'a/b/c'")
|
||||
endif()
|
||||
cmake_path(NORMAL_PATH path)
|
||||
cmake_path(COMPARE path EQUAL "a/b/c" output)
|
||||
if (NOT output)
|
||||
list (APPEND errors "'${path}' not equal to 'a/b/c'")
|
||||
endif()
|
||||
|
||||
check_errors (COMPARE ${errors})
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
1
Tests/RunCMake/cmake_path/CONCAT-wrong-path-result.txt
Normal file
1
Tests/RunCMake/cmake_path/CONCAT-wrong-path-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
20
Tests/RunCMake/cmake_path/CONCAT.cmake
Normal file
20
Tests/RunCMake/cmake_path/CONCAT.cmake
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
||||
unset (errors)
|
||||
|
||||
set (path "/a/b")
|
||||
cmake_path (CONCAT path "cd")
|
||||
if (NOT path STREQUAL "/a/bcd")
|
||||
list (APPEND errors "'${path}' instead of 'a/bcd'")
|
||||
endif()
|
||||
|
||||
set (path "/a/b")
|
||||
cmake_path (CONCAT path "cd" "ef" OUTPUT_VARIABLE output)
|
||||
if (NOT path STREQUAL "/a/b")
|
||||
list (APPEND errors "input changed unexpectedly")
|
||||
endif()
|
||||
if (NOT output STREQUAL "/a/bcdef")
|
||||
list (APPEND errors "'${output}' instead of 'a/bcdef'")
|
||||
endif()
|
||||
|
||||
check_errors (CONCAT ${errors})
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1,2 @@
|
||||
CMake Error at CONVERT-wrong-operator.cmake:[0-9]+ \(cmake_path\):
|
||||
cmake_path CONVERT called with an unknown action: FOO.
|
2
Tests/RunCMake/cmake_path/CONVERT-wrong-operator.cmake
Normal file
2
Tests/RunCMake/cmake_path/CONVERT-wrong-operator.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
cmake_path(CONVERT "/a/b" FOO output)
|
110
Tests/RunCMake/cmake_path/CONVERT.cmake
Normal file
110
Tests/RunCMake/cmake_path/CONVERT.cmake
Normal file
@@ -0,0 +1,110 @@
|
||||
|
||||
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
||||
unset (errors)
|
||||
|
||||
cmake_path(CONVERT "/x/y/z/../../a/d" TO_CMAKE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "/x/y/z/../../a/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '/x/y/z/../../a/d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "/x/y/z/../../a/d" TO_CMAKE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "/x/a/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '/x/a/d'")
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
cmake_path(CONVERT "/x\\y/z\\..\\../a/d" TO_CMAKE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "/x/y/z/../../a/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '/x/y/z/../../a/d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "/x\\y/z\\..\\../a/d" TO_CMAKE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "/x/a/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '/x/a/d'")
|
||||
endif()
|
||||
|
||||
cmake_path(CONVERT "//?/c:/x\\y/z\\..\\../a/d" TO_CMAKE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "c:/x/y/z/../../a/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of 'c:/x/y/z/../../a/d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "//?/c:/x\\y/z\\..\\../a/d" TO_CMAKE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "c:/x/a/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of 'c:/x/a/d'")
|
||||
endif()
|
||||
|
||||
cmake_path(CONVERT "//?/UNC/host/x\\y/z\\..\\../a/d" TO_CMAKE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "//host/x/y/z/../../a/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '//host/x/y/z/../../a/d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "//?/UNC/host/x\\y/z\\..\\../a/d" TO_CMAKE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "//host/x/a/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '//host/x/a/d'")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
cmake_path(CONVERT "/x\\y/z/..\\../a\\d;c:\\a/b\\c/..\\d" TO_CMAKE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "/x/y/z/../../a/d;c:/a/b/c/../d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '/x/y/z/../../a/d;c:/a/b/c/../d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "/x\\y/z/..\\../a\\d;c:\\a/b\\c/..\\d" TO_CMAKE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "/x/a/d;c:/a/b/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '/x/a/d;c:/a/b/d'")
|
||||
endif()
|
||||
else()
|
||||
cmake_path(CONVERT "/x/y/z/../../a/d:/a/b/c/../d" TO_CMAKE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "/x/y/z/../../a/d;/a/b/c/../d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${outputh}' instead of '/x/y/z/../../a/d;/a/b/c/../d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "/x/y/z/../../a/d:/a/b/c/../d" TO_CMAKE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "/x/a/d;/a/b/d")
|
||||
list (APPEND errors "TO_CMAKE_PATH_LIST: '${output}' instead of '/x/a/d;/a/b/d'")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
if (WIN32)
|
||||
cmake_path(CONVERT "c:/a//b\\c/..\\d" TO_NATIVE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "c:\\a\\\\b\\c\\..\\d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of 'c:\\a\\\\b\\c\\..\\d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "c:/a//b\\c/..\\d" TO_NATIVE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "c:\\a\\b\\d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of 'c:\\a\\b\\d'")
|
||||
endif()
|
||||
|
||||
cmake_path(CONVERT "//host/a//b\\c/..\\d" TO_NATIVE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "\\\\host\\a\\\\b\\c\\..\\d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of '\\\\host\\a\\\\b\\c\\..\\d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "//host/a//b\\c/..\\d" TO_NATIVE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "\\\\host\\a\\b\\d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of '\\\\host\\a\\b\\d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "//host/a//b\\c/..\\d;c:/a//b\\c/..\\d" TO_NATIVE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "\\\\host\\a\\\\b\\c\\..\\d;c:\\a\\\\b\\c\\..\\d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of '\\\\host\\a\\\\b\\c\\..\\d;c:\\a\\\\b\\c\\..\\d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "//host/a//b\\c/..\\d;c:/a//b\\c/..\\d" TO_NATIVE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "\\\\host\\a\\b\\d;c:\\a\\b\\d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of '\\\\host\\a\\b\\d;c:\\a\\b\\d'")
|
||||
endif()
|
||||
else()
|
||||
cmake_path(CONVERT "/a//b/c/../d" TO_NATIVE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "/a//b/c/../d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of '/a//b/c/../d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "/a//b/c/../d" TO_NATIVE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "/a/b/d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of '/a/b/d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "/x/y/z/../../a/d;/a/b/c/../d" TO_NATIVE_PATH_LIST output)
|
||||
if (NOT output STREQUAL "/x/y/z/../../a/d:/a/b/c/../d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of '/x/y/z/../../a/d:/a/b/c/../d'")
|
||||
endif()
|
||||
cmake_path(CONVERT "/x/y/z/../../a/d;/a/b/c/../d" TO_NATIVE_PATH_LIST output NORMALIZE)
|
||||
if (NOT output STREQUAL "/x/a/d:/a/b/d")
|
||||
list (APPEND errors "TO_NATIVE_PATH_LIST: '${output}' instead of '/x/a/d:/a/b/d'")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
check_errors (CONVERT ${errors})
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
1
Tests/RunCMake/cmake_path/GET-STEM-wrong-path-result.txt
Normal file
1
Tests/RunCMake/cmake_path/GET-STEM-wrong-path-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
1
Tests/RunCMake/cmake_path/GET-wrong-operator-result.txt
Normal file
1
Tests/RunCMake/cmake_path/GET-wrong-operator-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
2
Tests/RunCMake/cmake_path/GET-wrong-operator-stderr.txt
Normal file
2
Tests/RunCMake/cmake_path/GET-wrong-operator-stderr.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
CMake Error at GET-wrong-operator.cmake:[0-9]+ \(cmake_path\):
|
||||
cmake_path GET called with an unknown action: FOO.
|
3
Tests/RunCMake/cmake_path/GET-wrong-operator.cmake
Normal file
3
Tests/RunCMake/cmake_path/GET-wrong-operator.cmake
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
set (path "/a/b")
|
||||
cmake_path(GET path FOO output)
|
248
Tests/RunCMake/cmake_path/GET.cmake
Normal file
248
Tests/RunCMake/cmake_path/GET.cmake
Normal file
@@ -0,0 +1,248 @@
|
||||
|
||||
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
||||
unset (errors)
|
||||
|
||||
###############################################
|
||||
## First test with a path defining all elements
|
||||
###############################################
|
||||
if (WIN32)
|
||||
set (path "C:/aa/bb/cc.ext1.ext2")
|
||||
else()
|
||||
set (path "/aa/bb/cc.ext1.ext2")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_NAME output)
|
||||
if (WIN32)
|
||||
if (NOT output STREQUAL "C:")
|
||||
list (APPEND errors "ROOT_NAME returns bad data: ${output}")
|
||||
endif()
|
||||
else()
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "ROOT_NAME returns bad data: ${output}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_DIRECTORY output)
|
||||
if (NOT output STREQUAL "/")
|
||||
list (APPEND errors "ROOT_DIRECTORY returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_PATH output)
|
||||
if (WIN32)
|
||||
if (NOT output STREQUAL "C:/")
|
||||
list (APPEND errors "ROOT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
else()
|
||||
if (NOT output STREQUAL "/")
|
||||
list (APPEND errors "ROOT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
cmake_path(GET path FILENAME output)
|
||||
if (NOT output STREQUAL "cc.ext1.ext2")
|
||||
list (APPEND errors "FILENAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path EXTENSION output)
|
||||
if (NOT output STREQUAL ".ext1.ext2")
|
||||
list (APPEND errors "EXTENSION returns bad data: ${output}")
|
||||
endif()
|
||||
cmake_path(GET path EXTENSION LAST_ONLY output)
|
||||
if (NOT output STREQUAL ".ext2")
|
||||
list (APPEND errors "EXTENSION LAST_ONLY returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path STEM output)
|
||||
if (NOT output STREQUAL "cc")
|
||||
list (APPEND errors "STEM returns bad data: ${output}")
|
||||
endif()
|
||||
cmake_path(GET path STEM LAST_ONLY output)
|
||||
if (NOT output STREQUAL "cc.ext1")
|
||||
list (APPEND errors "STEM LAST_ONLY returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path RELATIVE_PATH output)
|
||||
if (NOT output STREQUAL "aa/bb/cc.ext1.ext2")
|
||||
list (APPEND errors "RELATIVE_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path PARENT_PATH output)
|
||||
if (WIN32)
|
||||
if (NOT output STREQUAL "C:/aa/bb")
|
||||
list (APPEND errors "PARENT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
else()
|
||||
if (NOT output STREQUAL "/aa/bb")
|
||||
list (APPEND errors "PARENT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
######################################
|
||||
## second, tests with missing elements
|
||||
######################################
|
||||
set (path "aa/bb/")
|
||||
|
||||
cmake_path(GET path ROOT_NAME output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "ROOT_NAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_DIRECTORY output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "ROOT_DIRECTORY returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_PATH output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "ROOT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path FILENAME output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "FILENAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path EXTENSION output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "EXTENSION returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path STEM output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "STEM returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path RELATIVE_PATH output)
|
||||
if (NOT output STREQUAL path)
|
||||
list (APPEND errors "RELATIVE_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path PARENT_PATH output)
|
||||
if (NOT output STREQUAL "aa/bb")
|
||||
list (APPEND errors "PARENT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
##################################
|
||||
set (path "/aa/bb/")
|
||||
|
||||
cmake_path(GET path ROOT_NAME output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "ROOT_NAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_DIRECTORY output)
|
||||
if (NOT output STREQUAL "/")
|
||||
list (APPEND errors "ROOT_DIRECTORY returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_PATH output)
|
||||
if (NOT output STREQUAL "/")
|
||||
list (APPEND errors "ROOT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
###################################
|
||||
set (path "/")
|
||||
|
||||
cmake_path(GET path ROOT_NAME output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "ROOT_NAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_DIRECTORY output)
|
||||
if (NOT output STREQUAL "/")
|
||||
list (APPEND errors "ROOT_DIRECTORY returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path ROOT_PATH output)
|
||||
if (NOT output STREQUAL "/")
|
||||
list (APPEND errors "ROOT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path FILENAME output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "FILENAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path EXTENSION output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "EXTENSION returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path STEM output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "STEM returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path RELATIVE_PATH output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "RELATIVE_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path PARENT_PATH output)
|
||||
if (NOT output STREQUAL "/")
|
||||
list (APPEND errors "PARENT_PATH returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
###################################
|
||||
set (path ".file")
|
||||
|
||||
cmake_path(GET path FILENAME output)
|
||||
if (NOT output STREQUAL ".file")
|
||||
list (APPEND errors "FILENAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path EXTENSION output)
|
||||
if (NOT output STREQUAL "")
|
||||
list (APPEND errors "EXTENSION returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path STEM output)
|
||||
if (NOT output STREQUAL ".file")
|
||||
list (APPEND errors "STEM returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
###################################
|
||||
set (path ".file.ext")
|
||||
|
||||
cmake_path(GET path FILENAME output)
|
||||
if (NOT output STREQUAL ".file.ext")
|
||||
list (APPEND errors "FILENAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path EXTENSION output)
|
||||
if (NOT output STREQUAL ".ext")
|
||||
list (APPEND errors "EXTENSION returns bad data: ${output}")
|
||||
endif()
|
||||
cmake_path(GET path EXTENSION LAST_ONLY output)
|
||||
if (NOT output STREQUAL ".ext")
|
||||
list (APPEND errors "EXTENSION returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path STEM output)
|
||||
if (NOT output STREQUAL ".file")
|
||||
list (APPEND errors "STEM returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
###################################
|
||||
set (path ".file.ext1.ext2")
|
||||
|
||||
cmake_path(GET path FILENAME output)
|
||||
if (NOT output STREQUAL ".file.ext1.ext2")
|
||||
list (APPEND errors "FILENAME returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path EXTENSION output)
|
||||
if (NOT output STREQUAL ".ext1.ext2")
|
||||
list (APPEND errors "EXTENSION returns bad data: ${output}")
|
||||
endif()
|
||||
cmake_path(GET path EXTENSION LAST_ONLY output)
|
||||
if (NOT output STREQUAL ".ext2")
|
||||
list (APPEND errors "EXTENSION returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
cmake_path(GET path STEM output)
|
||||
if (NOT output STREQUAL ".file")
|
||||
list (APPEND errors "STEM returns bad data: ${output}")
|
||||
endif()
|
||||
|
||||
check_errors (GET ${errors})
|
1
Tests/RunCMake/cmake_path/HASH-invalid-output-result.txt
Normal file
1
Tests/RunCMake/cmake_path/HASH-invalid-output-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
1
Tests/RunCMake/cmake_path/HASH-missing-output-result.txt
Normal file
1
Tests/RunCMake/cmake_path/HASH-missing-output-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
1
Tests/RunCMake/cmake_path/HASH-unexpected-arg-result.txt
Normal file
1
Tests/RunCMake/cmake_path/HASH-unexpected-arg-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
1
Tests/RunCMake/cmake_path/HASH-wrong-path-result.txt
Normal file
1
Tests/RunCMake/cmake_path/HASH-wrong-path-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
27
Tests/RunCMake/cmake_path/HASH.cmake
Normal file
27
Tests/RunCMake/cmake_path/HASH.cmake
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
||||
unset (errors)
|
||||
|
||||
set (path1 "a///b/c")
|
||||
cmake_path(HASH path1 hash1)
|
||||
set (path2 "a/b////c")
|
||||
cmake_path(HASH path2 hash2)
|
||||
if (NOT hash1 STREQUAL hash2)
|
||||
list (APPEND errors "'hash values not equal for '${path1}' and '${path2}'")
|
||||
endif()
|
||||
|
||||
set (path1 "a///b/c/../d")
|
||||
cmake_path(HASH path1 hash1)
|
||||
set (path2 "a/b////d")
|
||||
cmake_path(HASH path2 hash2)
|
||||
if (hash1 STREQUAL hash2)
|
||||
list (APPEND errors "'hash values equal for '${path1}' and '${path2}'")
|
||||
endif()
|
||||
cmake_path(HASH path1 hash1 NORMALIZE)
|
||||
cmake_path(HASH path2 NORMALIZE hash2)
|
||||
if (NOT hash1 STREQUAL hash2)
|
||||
list (APPEND errors "'hash values not equal for '${path1}' and '${path2}'")
|
||||
endif()
|
||||
|
||||
|
||||
check_errors (HASH ${errors})
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
@@ -0,0 +1 @@
|
||||
1
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user