You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
228 B
11 lines
228 B
3 years ago
|
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
|
||
|
)
|