]> git.lizzy.rs Git - stpcpy.git/blob - CMakeLists.txt
Initial commit
[stpcpy.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 3.14)
2 project(Stpcpy)
3
4 add_compile_options(
5         -Wall
6         -Wextra
7         -Werror
8 )
9
10 add_library(stpcpy
11         stpcpy.c
12 )
13
14 target_include_directories(stpcpy
15         PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
16 )