1SUBDIRECTORIES 2-------------- 3 4.. versionadded:: 3.7 5 6This read-only directory property contains a 7:ref:`semicolon-separated list <CMake Language Lists>` of subdirectories processed so far by 8the :command:`add_subdirectory` or :command:`subdirs` commands. Each entry is 9the absolute path to the source directory (containing the ``CMakeLists.txt`` 10file). This is suitable to pass to the :command:`get_property` command 11``DIRECTORY`` option. 12 13.. note:: 14 15 The :command:`subdirs` command does not process its arguments until 16 after the calling directory is fully processed. Therefore looking 17 up this property in the current directory will not see them. 18