mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 19:24:40 +00:00
9 lines
414 B
CMake
9 lines
414 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(libdicformat C)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
add_library(libdicformat SHARED include/dicformat/consts.h include/dicformat/enums.h include/dic.h include/dicformat.h
|
|
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)
|
|
|
|
include_directories(include include/dicformat) |