mirror of
https://github.com/Kitware/CMake.git
synced 2026-08-05 23:30:25 +00:00
An new environment variable 'CMAKE_INSTALL_MODE' is introduced, which can be used to ask CMake to create symbolic links instead of copying files during a file(INSTALL ...). The operation is at the file level only, directory trees are still created using actual directories, not links. Signed-off-by: Felix Lelchuk <felix.lelchuk@gmx.de>
11 lines
228 B
CMake
11 lines
228 B
CMake
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
project(subpro_c_nested_lib LANGUAGES NONE)
|
|
|
|
include(../Subproject.cmake)
|
|
add_subproject(c1_lib DIR subsubpro_c1_lib)
|
|
add_subproject(c2_lib DIR subsubpro_c2_lib
|
|
DEPENDS
|
|
c1_lib
|
|
)
|