12 lines
165 B
Text
12 lines
165 B
Text
|
cmake_minimum_required(VERSION 3.21)
|
||
|
|
||
|
project(Garbage
|
||
|
LANGUAGES C CXX
|
||
|
)
|
||
|
|
||
|
add_subdirectory(Garbage)
|
||
|
|
||
|
if(PROJECT_IS_TOP_LEVEL)
|
||
|
add_subdirectory(Tests)
|
||
|
endif()
|