foot/CMakeLists.txt
shylie 80d83f2062
All checks were successful
Test / build (push) Successful in 13s
Add SIMD instruction variants
2025-08-17 11:18:08 -04:00

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)