aboutsummaryrefslogtreecommitdiff
path: root/cstring/CMakeLists.txt
blob: bc385c361f1a9e75c02a0be2ef308c259c0a28ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
cmake_minimum_required(VERSION 3.0)

project(cstring)

add_library(cstring
  src/cstring.c)

target_include_directories(cstring PUBLIC
  include)

target_link_libraries(cstring PUBLIC
  cassert
  -lbsd)