aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/ssh/ssh.qbs
blob: dc6fe547eb6605faa28037266f8667023aa0b23e (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
import qbs 1.0

Project {
    name: "QtcSsh"

    QtcDevHeaders { }

    QtcLibrary {
        cpp.defines: base.concat("QTCSSH_LIBRARY")
        cpp.enableExceptions: true

        Depends { name: "Qt"; submodules: ["widgets", "network" ] }
        Depends { name: "Utils" }

        files: [
            "sftpdefs.cpp",
            "sftpdefs.h",
            "sftpfilesystemmodel.cpp",
            "sftpfilesystemmodel.h",
            "sftpsession.cpp",
            "sftpsession.h",
            "sftptransfer.cpp",
            "sftptransfer.h",
            "ssh.qrc",
            "sshconnection.h",
            "sshconnection.cpp",
            "sshconnectionmanager.cpp",
            "sshconnectionmanager.h",
            "sshkeycreationdialog.cpp",
            "sshkeycreationdialog.h",
            "sshkeycreationdialog.ui",
            "sshlogging.cpp",
            "sshlogging_p.h",
            "sshprocess.cpp",
            "sshprocess.h",
            "sshremoteprocess.cpp",
            "sshremoteprocess.h",
            "sshremoteprocessrunner.cpp",
            "sshremoteprocessrunner.h",
            "sshsettings.cpp",
            "sshsettings.h",
        ]

        Export { Depends { name: "Qt.network" } }
    }
}