mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +00:00
Extracted the service API from TactilityKernel and put it in a new module at `Modules/service-module`
18 lines
446 B
CMake
18 lines
446 B
CMake
project(TactilityKernelTests)
|
|
|
|
enable_language(C CXX ASM)
|
|
|
|
|
|
file(GLOB_RECURSE TEST_SOURCES ${PROJECT_SOURCE_DIR}/Source/*.cpp)
|
|
add_executable(TactilityKernelTests EXCLUDE_FROM_ALL ${TEST_SOURCES})
|
|
|
|
target_include_directories(TactilityKernelTests PRIVATE ${DOCTESTINC})
|
|
|
|
add_test(NAME TactilityKernelTests COMMAND TactilityKernelTests)
|
|
|
|
target_link_libraries(TactilityKernelTests PUBLIC
|
|
TactilityKernel
|
|
platform-posix
|
|
service-module
|
|
)
|