Files
esp32-aldl/tests/CMakeLists.txt
T
gronod 98d35a82e1
Build and Package Firmware / build (push) Failing after 2m0s
feat: add decoder module, host unit tests, and GitHub Actions CI pipeline
2026-06-12 14:04:58 +01:00

11 lines
275 B
CMake

cmake_minimum_required(VERSION 3.16)
project(test_decoder C)
set(CMAKE_C_STANDARD 99)
# Include decoder headers from main
include_directories(../main)
# Add compilation target linking tests and decoder sources
add_executable(test_decoder test_decoder.c ../main/decoder.c)