summaryrefslogtreecommitdiff
path: root/src/libs/ssh/ssh.qbs
blob: 27b3368d0e206fef086128e7893d3bf0e5a9fcdd (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import qbs 1.0
import qbs.Environment

Project {
    name: "QtcSsh"

    QtcDevHeaders { }

    QtcLibrary {
        cpp.defines: base.concat("QTCSSH_LIBRARY")
        cpp.includePaths: botanIncludes
        cpp.dynamicLibraries: botanLibs
        cpp.enableExceptions: true

        Properties {
            condition: qbs.toolchain.contains("msvc")
            cpp.cxxFlags: base.concat("/wd4250");
        }

        Depends { name: "Qt"; submodules: ["widgets", "network" ] }
        Depends { name: "Botan"; condition: !qtc.useSystemBotan }

        files: [
            "opensshkeyfilereader.cpp",
            "opensshkeyfilereader_p.h",
            "sftpchannel.h",
            "sftpchannel_p.h",
            "sftpchannel.cpp",
            "sftpdefs.cpp",
            "sftpdefs.h",
            "sftpfilesystemmodel.cpp",
            "sftpfilesystemmodel.h",
            "sftpincomingpacket.cpp",
            "sftpincomingpacket_p.h",
            "sftpoperation.cpp",
            "sftpoperation_p.h",
            "sftpoutgoingpacket.cpp",
            "sftpoutgoingpacket_p.h",
            "sftppacket.cpp",
            "sftppacket_p.h",
            "ssh.qrc",
            "sshagent.cpp",
            "sshagent_p.h",
            "sshbotanconversions_p.h",
            "sshcapabilities_p.h",
            "sshcapabilities.cpp",
            "sshchannel.cpp",
            "sshchannel_p.h",
            "sshchannelmanager.cpp",
            "sshchannelmanager_p.h",
            "sshconnection.h",
            "sshconnection_p.h",
            "sshconnection.cpp",
            "sshconnectionmanager.cpp",
            "sshconnectionmanager.h",
            "sshcryptofacility.cpp",
            "sshcryptofacility_p.h",
            "sshdirecttcpiptunnel.h",
            "sshdirecttcpiptunnel_p.h",
            "sshdirecttcpiptunnel.cpp",
            "ssherrors.h",
            "sshexception_p.h",
            "sshforwardedtcpiptunnel.cpp",
            "sshforwardedtcpiptunnel.h",
            "sshforwardedtcpiptunnel_p.h",
            "sshhostkeydatabase.cpp",
            "sshhostkeydatabase.h",
            "sshincomingpacket_p.h",
            "sshincomingpacket.cpp",
            "sshkeycreationdialog.cpp",
            "sshkeycreationdialog.h",
            "sshkeycreationdialog.ui",
            "sshkeyexchange.cpp",
            "sshkeyexchange_p.h",
            "sshkeygenerator.cpp",
            "sshkeygenerator.h",
            "sshkeypasswordretriever.cpp",
            "sshkeypasswordretriever_p.h",
            "sshlogging.cpp",
            "sshlogging_p.h",
            "sshoutgoingpacket.cpp",
            "sshoutgoingpacket_p.h",
            "sshpacket.cpp",
            "sshpacket_p.h",
            "sshpacketparser.cpp",
            "sshpacketparser_p.h",
            "sshpseudoterminal.h",
            "sshremoteprocess.cpp",
            "sshremoteprocess.h",
            "sshremoteprocess_p.h",
            "sshremoteprocessrunner.cpp",
            "sshremoteprocessrunner.h",
            "sshsendfacility.cpp",
            "sshsendfacility_p.h",
            "sshtcpipforwardserver.cpp",
            "sshtcpipforwardserver.h",
            "sshtcpipforwardserver_p.h",
            "sshtcpiptunnel.cpp",
            "sshtcpiptunnel_p.h",
            "sshx11channel.cpp",
            "sshx11channel_p.h",
            "sshx11displayinfo_p.h",
            "sshx11inforetriever.cpp",
            "sshx11inforetriever_p.h",
        ]

        property var botanIncludes: qtc.useSystemBotan ? ["/usr/include/botan-2"] : []
        property var botanLibs: {
            var result = [];
            if (qtc.useSystemBotan)
                result.push("botan-2")
            if (qbs.targetOS.contains("windows"))
                result.push("advapi32", "user32", "ws2_32")
            else if (qbs.targetOS.contains("linux"))
                result.push("rt", "dl");
            else if (qbs.targetOS.contains("macos"))
                result.push("dl");
            else if (qbs.targetOS.contains("unix"))
                result.push("rt");
            return result
        }

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