mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 19:24:40 +00:00
8 lines
195 B
CMake
8 lines
195 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_directories(include include/dicformat)
|