- Create `test` and `tactility-core-tests` subprojects - Created tests for `thread.c` - Fixed issue with thread cleanup (see what I did there? :P) - Removed functions from `thread.h` that did not exist anymore - Updated `ideas.md`
10 lines
196 B
CMake
10 lines
196 B
CMake
project(tests)
|
|
|
|
set(DOCTESTINC ${PROJECT_SOURCE_DIR}/include)
|
|
|
|
enable_testing()
|
|
add_subdirectory(tactility-core)
|
|
|
|
add_custom_target(build-tests)
|
|
add_dependencies(build-tests tactility-core-tests)
|