Files
libaaruformat/CMakeLists.txt

14 lines
741 B
CMake
Raw Normal View History

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:43 +00:00
add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enums.h include/aaru.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
2022-05-28 12:50:10 +01:00
src/close.c include/aaruformat/errors.h src/read.c include/aaruformat/crc64.h src/cst.c src/ecc_cd.c src/helpers.c
src/simd.c include/aaruformat/simd.h src/crc64/crc64.c src/crc64/crc64_clmul.c src/crc64/crc64_vmull.c src/crc64/arm_vmull.c src/crc64/arm_vmull.h)
2019-03-16 17:40:39 +00:00
2022-05-28 11:41:19 +01:00
include_directories(include include/aaruformat)
add_subdirectory(tests)