Files
tactility/Modules/http-module/tests/CMakeLists.txt
T
Ken Van Hoeylandt bcbf18e363 Implement http-module (#637)
Create http-module and implement it in App Hub and App Hub Details apps.
2026-08-28 23:09:59 +02:00

17 lines
431 B
CMake

project(HttpModuleTests)
enable_language(C CXX ASM)
file(GLOB_RECURSE TEST_SOURCES CONFIGURE_DEPENDS ${PROJECT_SOURCE_DIR}/source/*.cpp)
add_executable(HttpModuleTests EXCLUDE_FROM_ALL ${TEST_SOURCES})
target_include_directories(HttpModuleTests PRIVATE ${DOCTESTINC})
add_test(NAME HttpModuleTests COMMAND HttpModuleTests)
target_link_libraries(HttpModuleTests PUBLIC
http-module
TactilityKernel
freertos_kernel
)