Remove unused tests directory

This commit is contained in:
2025-01-02 00:16:17 +00:00
parent dc53a2d8de
commit f196440112
5 changed files with 0 additions and 94 deletions

View File

@@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.10)
project(epec-mcu-emulator LANGUAGES C)
option(TESTS "Build unit tests" ON)
option(WERROR "Treat warnings as errors" OFF)
option(SANITIZERS "Enable memory and undefined behaviour sanitizers" OFF)
@@ -40,8 +39,3 @@ find_package(SDL2_image REQUIRED)
add_subdirectory(engine)
add_subdirectory(app)
if (${TESTS})
enable_testing()
add_subdirectory(tests)
endif()