shithub: lwext4

ref: 01af5a89b3e1ac5c45472ef8ade9c15ffbd19925
dir: /blockdev/CMakeLists.txt/

View raw version
#Blockdev library

if    (BLOCKDEV_TYPE STREQUAL  linux)
aux_source_directory(linux BLOCKDEV_SRC)
elseif    (BLOCKDEV_TYPE STREQUAL  windows)
aux_source_directory(windows BLOCKDEV_SRC)
elseif    (BLOCKDEV_TYPE STREQUAL  chibios)
aux_source_directory(chibios BLOCKDEV_SRC)
else()
endif()

aux_source_directory(. BLOCKDEV_SRC)

add_library(blockdev  ${BLOCKDEV_SRC})