Abbreviated multi-part command recognition C library
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Unit tests project
|
|
|
|
cmake_minimum_required(VERSION 3.10)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
SET(CMAKE_BUILD_TYPE Debug)
|
|
|
|
project(test)
|
|
|
|
set(SOURCES prefix_match.c test/main.c test/test_framework.c)
|
|
|
|
add_executable(test ${SOURCES})
|
|
|
|
target_include_directories(test
|
|
PRIVATE "." "test"
|
|
)
|
|
|