2019-03-16 17:40:39 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-03-01 19:51:13 +00:00
|
|
|
project(libaaruformat C)
|
2019-03-16 17:40:39 +00:00
|
|
|
|
2019-08-03 02:11:36 +01:00
|
|
|
set(CMAKE_C_STANDARD 90)
|
2019-03-17 21:14:40 +00:00
|
|
|
add_compile_definitions(__STDC_FORMAT_MACROS=1)
|
2019-03-16 17:40:39 +00:00
|
|
|
|
2020-03-01 19:51:13 +00:00
|
|
|
add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enums.h include/dic.h include/aaruformat.h
|
2020-03-01 19:49:43 +00:00
|
|
|
include/aaruformat/decls.h include/aaruformat/structs.h src/identify.c src/open.c include/aaruformat/context.h
|
|
|
|
|
src/close.c include/aaruformat/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
|
|
|
|
2020-03-01 19:49:43 +00:00
|
|
|
include_directories(include include/aaruformat)
|