mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
10 lines
224 B
CMake
10 lines
224 B
CMake
cmake_minimum_required(VERSION 3.2)
|
|
project(fatfs VERSION 0.14.1) # R0.14b
|
|
|
|
add_library(fatfs
|
|
source/ff.c
|
|
source/ffunicode.c
|
|
source/ffsystem.c
|
|
)
|
|
target_include_directories(fatfs PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/source)
|