2019-03-16 17:40:39 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
|
project(libdicformat C)
|
|
|
|
|
|
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
2019-03-17 21:14:40 +00:00
|
|
|
add_compile_definitions(__STDC_FORMAT_MACROS=1)
|
2019-03-16 17:40:39 +00:00
|
|
|
|
2019-03-21 01:06:21 +00:00
|
|
|
add_library(dicformat SHARED include/dicformat/consts.h include/dicformat/enums.h include/dic.h include/dicformat.h
|
2019-03-31 20:52:06 +01:00
|
|
|
include/dicformat/decls.h include/dicformat/structs.h src/identify.c src/open.c include/dicformat/context.h
|
|
|
|
|
src/close.c include/dicformat/errors.h src/read.c src/crc64.c src/cst.c src/ecc_cd.c src/helpers.c)
|
2019-03-16 17:40:39 +00:00
|
|
|
|
|
|
|
|
include_directories(include include/dicformat)
|