13 lines
183 B
CMake
13 lines
183 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
project(foot)
|
|
|
|
if(PROJECT_IS_TOP_LEVEL)
|
|
enable_testing()
|
|
set(FOOT_TESTS ON)
|
|
else()
|
|
set(FOOT_TESTS OFF)
|
|
endif()
|
|
|
|
add_subdirectory(emulator)
|