1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2024-11-25 00:53:43 +00:00
dindexer/cmake/Modules/WithMediaAutodetect.cmake
2015-12-26 14:51:49 +00:00

7 lines
215 B
CMake

if (DINDEXER_WITH_MEDIA_AUTODETECT)
find_package(blkid)
if (NOT BLKID_FOUND)
message(STATUS "libblkid not found, media autodetection will be disabled")
set(DINDEXER_WITH_MEDIA_AUTODETECT OFF)
endif()
endif()