Abbreviated multi-part command recognition C library
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
prefix_match/CMakeLists.txt

16 righe
284 B

# 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"
)