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