This the generic implementation is split into seperated files now and list test has been updated. This requires a change to the build image and an update of the pipeline definition.
22 lines
519 B
CMake
22 lines
519 B
CMake
cmake_minimum_required(VERSION 3.21 FATAL_ERROR)
|
|
|
|
include("project-meta-info.in")
|
|
|
|
project(waitui-list
|
|
VERSION ${project_version}
|
|
DESCRIPTION ${project_description}
|
|
HOMEPAGE_URL ${project_homepage}
|
|
LANGUAGES C)
|
|
|
|
add_library(list OBJECT)
|
|
|
|
target_sources(list
|
|
PRIVATE
|
|
"src/list.c"
|
|
PUBLIC
|
|
"include/waitui/list.h"
|
|
"include/waitui/list_generic.h"
|
|
"include/waitui/list_generic_impl.h"
|
|
)
|
|
|
|
target_include_directories(list PUBLIC "include") |