foot/emulator/CMakeLists.txt
2025-07-07 13:17:42 -04:00

15 lines
381 B
CMake

cmake_minimum_required(VERSION 3.20)
project(foot-emulator)
add_library(foot-emulator src/foot-emulator.cpp include/foot-emulator.h)
target_include_directories(foot-emulator PUBLIC include)
add_executable(foot-emulator-cli src/main.cpp)
target_link_libraries(foot-emulator-cli PUBLIC foot-emulator)
if(PROJECT_IS_TOP_LEVEL)
enable_testing()
add_subdirectory(tests)
endif()