-
Notifications
You must be signed in to change notification settings - Fork 4
/
fileinsight.pro
40 lines (32 loc) · 938 Bytes
/
fileinsight.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#-------------------------------------------------
#
# Project created by QtCreator 2016-09-13T13:07:54
#
#-------------------------------------------------
QT += core gui widgets
TARGET = fileinsight
TEMPLATE = app
SOURCES += main.cpp\
fileinsight.cpp \
fileinsightsubdialog.cpp \
fileinsightbackend.cpp \
libmagicbackend.cpp \
fileinsightutils.cpp \
tridbackend.cpp \
qmimedatabasebackend.cpp
HEADERS += fileinsight.h \
fileinsightsubdialog.h \
fileinsightbackend.h \
libmagicbackend.h \
fileinsightutils.h \
tridbackend.h \
qmimedatabasebackend.h
FORMS += fileinsight.ui \
fileinsightsubdialog.ui
# When compiling on Windows, load our thirdparty/ folder
win32:INCLUDEPATH += $$PWD\thirdparty\include
win32:LIBPATH += $$PWD\thirdparty\bin
win32:LIBPATH += $$PWD\thirdparty\lib
win32:QT += winextras
# Link to libmagic for file type detection
LIBS += -lmagic