mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 21:30:01 -05:00
fcbc883fa3
Adds the ``--project-file`` command-line option to modify the default script name loaded by CMake and ``add_subdirectory`` to values other than ``CMakeLists.txt``. Fixes: #21570
6 lines
147 B
CMake
6 lines
147 B
CMake
cmake_minimum_required(VERSION 3.31)
|
|
project(test)
|
|
message(STATUS "Processing: other.cmake")
|
|
add_subdirectory(subdir-1)
|
|
add_subdirectory(subdir-2)
|