mirror of https://github.com/gkostka/lwext4.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
278 B
12 lines
278 B
#Blockdev library
|
|
|
|
if (BLOCKDEV_TYPE STREQUAL linux)
|
|
aux_source_directory(linux BLOCKDEV_SRC)
|
|
elseif (BLOCKDEV_TYPE STREQUAL windows)
|
|
aux_source_directory(windows BLOCKDEV_SRC)
|
|
else()
|
|
endif()
|
|
|
|
aux_source_directory(. BLOCKDEV_SRC)
|
|
add_library(blockdev ${BLOCKDEV_SRC})
|
|
|
|
|