summaryrefslogtreecommitdiffstats
path: root/src/libs/kdtools/kdtools.pri
blob: eaa391e0fcfb7a4a40a9750afc99ced1a0c56df7 (plain)
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
52
53
54
55
56
57
58
INCLUDEPATH += $$PWD

DEFINES += BUILD_SHARED_KDTOOLS

FORMS += $$PWD/authenticationdialog.ui

HEADERS += $$PWD/kdtoolsglobal.h \
    $$PWD/job.h \
    $$PWD/genericfactory.h \
    $$PWD/selfrestarter.h \
    $$PWD/runoncechecker.h \
    $$PWD/lockfile.h \
    $$PWD/sysinfo.h

SOURCES += $$PWD/job.cpp \
    $$PWD/selfrestarter.cpp \
    $$PWD/runoncechecker.cpp \
    $$PWD/lockfile.cpp \
    $$PWD/sysinfo.cpp


HEADERS += $$PWD/updater.h \
    $$PWD/filedownloader.h \
    $$PWD/filedownloader_p.h \
    $$PWD/filedownloaderfactory.h \
    $$PWD/localpackagehub.h \
    $$PWD/update.h \
    $$PWD/updateoperation.h \
    $$PWD/updateoperationfactory.h \
    $$PWD/updateoperations.h \
    $$PWD/task.h \
    $$PWD/updatefinder.h \
    $$PWD/updatesinfo_p.h \
    $$PWD/environment.h \
    $$PWD/updatesinfodata_p.h

SOURCES += $$PWD/filedownloader.cpp \
    $$PWD/filedownloaderfactory.cpp \
    $$PWD/localpackagehub.cpp \
    $$PWD/update.cpp \
    $$PWD/updateoperation.cpp \
    $$PWD/updateoperationfactory.cpp \
    $$PWD/updateoperations.cpp \
    $$PWD/task.cpp \
    $$PWD/updatefinder.cpp \
    $$PWD/updatesinfo.cpp \
    $$PWD/environment.cpp

win32 {
    SOURCES += $$PWD/lockfile_win.cpp \
        $$PWD/kdsysinfo_win.cpp
}

unix {
    SOURCES += $$PWD/lockfile_unix.cpp
    osx: SOURCES += $$PWD/sysinfo_mac.cpp
    else: SOURCES += $$PWD/sysinfo_x11.cpp
}