aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: ee2fdedf15b1573218e1746d384a629e14692e71 (plain) (blame)
1
2
3
4
5
6
7
8
9
cmake_minimum_required(VERSION 3.15)
project(spm C)
include(CheckSymbolExists)
set(CMAKE_C_STANDARD 99)

check_symbol_exists(strsep string.h HAVE_STRSEP)
configure_file(${CMAKE_SOURCE_DIR}/config.h.in ${CMAKE_BINARY_DIR}/include/config.h)

add_subdirectory(src)