1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-14 14:49:48 +00:00

Add retrieving the mime type.

This is not being stored to the db yet.
This commit is contained in:
King_DuckZ 2015-12-15 11:26:04 +00:00
parent 2b7d8a6783
commit 148b60ee97
5 changed files with 149 additions and 6 deletions

View file

@ -0,0 +1,21 @@
# Copyright 2011 by Alex Turbov <i.zaufi@gmail.com>
#
# - Try to find the libmagic library.
#
# Once done this will define
#
# MAGIC_FOUND - system has libmagic
# MAGIC_INCLUDE_DIR - the libmagic include directory
# MAGIC_LIBRARIES - The libraries needed to use libmagic
find_library(MAGIC_LIBRARIES magic)
find_path(MAGIC_INCLUDE_DIR magic.h)
find_package_handle_standard_args(Magic DEFAULT_MSG MAGIC_LIBRARIES MAGIC_INCLUDE_DIR)
# TODO Check for some symbols?
# X-Chewy-RepoBase: https://raw.githubusercontent.com/mutanabbi/chewy-cmake-rep/master/
# X-Chewy-Path: FindMagic.cmake
# X-Chewy-Version: 1.0
# X-Chewy-Description: Find MIME-type detection library