blob: 8a5bcd0f0e111bad0a6ec0bd376bb22bca330377 [file] [log] [blame]
Hannes Tschofenigac5763d2021-04-20 21:12:07 +02001cmake_minimum_required(VERSION 3.10.2)
2project(qcbor
3 DESCRIPTION "QCBOR"
4 LANGUAGES C
5 VERSION 1.0.0)
6
7set(CMAKE_C_FLAGS "-pedantic -Wall -O3 -ffunction-sections")
8
9include_directories(inc)
10
11set(SOURCE
12 src/ieee754.c
13 src/qcbor_decode.c
14 src/qcbor_encode.c
15 src/qcbor_err_to_str.c
16 src/UsefulBuf.c
17)
18
19add_library(qcbor ${SOURCE})