-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLibFusion.pro
51 lines (44 loc) · 901 Bytes
/
LibFusion.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
41
42
43
44
45
46
47
48
49
50
51
QT += core sql network
TARGET = LibFusion
TEMPLATE = lib
CONFIG += c++11
DEFINES += LIBFUSION_LIBRARY
DESTDIR = ../OUT
MOC_DIR = ../BUILD
OBJECTS_DIR = ../BUILD
SOURCES += libfusion.cpp \
fgame.cpp \
fdb.cpp \
fcrawler.cpp \
fartmanager.cpp \
ffiledownloader.cpp \
fdbupdater.cpp \
fclientupdater.cpp \
flauncher.cpp \
fwatchedfolder.cpp \
ffilesync.cpp \
flogger.cpp \
flogging.cpp
HEADERS += libfusion.h\
libfusion_global.h \
fgame.h \
fdb.h \
fcrawler.h \
fartmanager.h \
ffiledownloader.h \
thegamedbstorage.h \
fdbupdater.h \
fclientupdater.h \
flauncher.h \
fwatchedfolder.h \
ffilesync.h \
fexception.h \
flogger.h \
flogging.h \
buildno.h
unix {
target.path = /usr/lib
headers.path = /usr/include
headers.files = $$HEADERS
INSTALLS += target headers
}