All checks were successful
continuous-integration/drone/push Build is passing
This pull request adds a list implementation that can be used in a generic way and adds everything that might be needed in later implementation of other data structurs. Reviewed-on: #1 PR #1
13 lines
332 B
CMake
13 lines
332 B
CMake
cmake_minimum_required(VERSION 3.21 FATAL_ERROR)
|
|
|
|
include("project-meta-info.in")
|
|
|
|
project(waitui-tests
|
|
VERSION ${project_version}
|
|
DESCRIPTION ${project_description}
|
|
HOMEPAGE_URL ${project_homepage}
|
|
LANGUAGES C)
|
|
|
|
#option(ENABLE_TEST_COVERAGE "Enable test coverage" ON)
|
|
|
|
add_subdirectory(library/list) |