mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
9 lines
170 B
CMake
9 lines
170 B
CMake
cmake_minimum_required (VERSION 3.0)
|
|
|
|
project(subprojects)
|
|
|
|
# Add sub directories
|
|
add_subdirectory(sublibrary1)
|
|
add_subdirectory(sublibrary2)
|
|
add_subdirectory(subbinary)
|