Skip to content

tim-gromeyer/MimeDetector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Made with C++ Powered by Qt License: GPL v3

As the name suggests, MimeDetector is a simple program for recognizing the MIME type of files

Table of contents

  1. Features
  2. Preview
  3. Dependencies

Features

  • Detect MIME type of files
  • Provide details about MIME types

Example

A preview is available here

Important:

  • Search does not work

Dependencies:

Qt


Build instructions

Run the build script or follow the instructions below.

  • Clone MarkdownEdit: git clone https://github.com/tim-gromeyer/MimeDetector --depth=1 && cd MimeDetector
  • Create the build folder: mkdir build && cd build.
  • Now create a Makefile with CMake: cmake ...
  • Build it: cmake --build . -j4

In summary:

git clone https://github.com/tim-gromeyer/MimeDetector --depth=1 && cd MimeDetector
mkdir build && cd build
cmake ..
cmake --build . -j4