Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/ttssh2/ttxssh/CMakeLists.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8332 - (hide annotations) (download)
Sat Oct 26 05:28:45 2019 UTC (4 years, 5 months ago) by zmatsuo
File MIME type: text/plain
File size: 3512 byte(s)
cmakeビルドで OpenSSL 1.1.1dのライブラリをビルド

- パッチは未適応
  - libs/openssl_patch/
  - ttxssh で crypt32.lib をリンク
1 zmatsuo 7456 project(ttxssh)
2    
3     set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/")
4    
5     include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_zlib.cmake)
6     include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_openssl.cmake)
7    
8 zmatsuo 7952 if (MSVC)
9 zmatsuo 8211 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /DELAYLOAD:user32.dll /DELAYLOAD:dnsapi.dll")
10 zmatsuo 7456 endif()
11    
12 zmatsuo 7952 add_library(
13     ttxssh SHARED
14 zmatsuo 7456 )
15    
16 zmatsuo 7952 target_sources(
17     ttxssh
18     PRIVATE
19 zmatsuo 7456 ${CMAKE_CURRENT_BINARY_DIR}/puttyversion.h
20     ../matcher/matcher.c
21     arc4random.c
22     arc4random.h
23     auth.c
24     auth.h
25     buffer.c
26     buffer.h
27     chacha.c
28     chacha.h
29     cipher.h
30     cipher-ctr.c
31     config.h
32     crypt.c
33     crypt.h
34     dns.c
35     dns.h
36     ed25519.c
37     ed25519_bcrypt_pbkdf.c
38     ed25519_blf.h
39     ed25519_blocks.c
40     ed25519_blowfish.c
41     ed25519_crypto_api.h
42     ed25519_fe25519.c
43     ed25519_fe25519.h
44     ed25519_ge25519.c
45     ed25519_ge25519.h
46     ed25519_hash.c
47     ed25519_sc25519.c
48     ed25519_sc25519.h
49     ed25519_verify.c
50     fwd.c
51     fwd.h
52     fwd-socks.c
53     fwd-socks.h
54     fwdui.c
55     fwdui.h
56     hosts.c
57     hosts.h
58     kex.c
59     kex.h
60     key.c
61     key.h
62     keyfiles.c
63     keyfiles.h
64     pkt.c
65     pkt.h
66     resource.h
67     sftp.c
68     sftp.h
69     ssh.c
70     ssh.h
71     ttxssh.c
72     ttxssh.def
73     ttxssh.h
74     ttxssh.rc
75     ttxssh-version.h
76     ttxssh-version.rc
77     util.c
78     util.h
79     x11util.c
80     x11util.h
81     ${COMMON_SRC}
82     )
83    
84 zmatsuo 7952 target_sources(
85     ttxssh
86     PRIVATE
87     ../../teraterm/teraterm/WSAAsyncGetAddrInfo.c
88     ../../teraterm/common/ttcommon.h
89     ../../teraterm/common/i18n.h
90     ../../teraterm/common/ttlib.h
91     ../../teraterm/common/ttlib.c
92     ../../teraterm/common/dlglib.h
93     ../../teraterm/common/dlglib.c
94     ../../teraterm/common/dlglib_cpp.cpp
95     ../../teraterm/common/dlglib_tmpl.cpp
96     ../../teraterm/common/servicenames.h
97     ../../teraterm/common/codeconv.cpp
98     ../../teraterm/common/codeconv.h
99     ../../teraterm/common/tipwin.cpp
100     ../../teraterm/common/tipwin.h
101     )
102 zmatsuo 7456
103 zmatsuo 7952 source_group(
104     "common"
105     REGULAR_EXPRESSION
106     "teraterm\/common\/")
107    
108     target_include_directories(
109     ttxssh
110     PRIVATE
111 zmatsuo 7456 ../../teraterm/teraterm
112     ../../teraterm/common
113     ../matcher
114     ../putty
115     ${OPENSSL_INCLUDE_DIRS}
116     ${ZLIB_INCLUDE_DIRS}
117 zmatsuo 7952 )
118 zmatsuo 7456
119 zmatsuo 7536 set_target_properties(
120     ttxssh
121     PROPERTIES
122     PREFIX ""
123     )
124    
125 zmatsuo 7952 target_compile_definitions(
126     ttxssh
127     PRIVATE
128     $<$<CONFIG:Debug>:_CRTDBG_MAP_ALLOC>
129     )
130     if(USE_UNICODE_API)
131     target_compile_definitions(
132     ttxssh
133     PRIVATE
134     UNICODE
135     _UNICODE
136     )
137     endif()
138    
139    
140 zmatsuo 7456 target_link_libraries(
141     ttxssh
142     libputty
143     ttpcmn
144 zmatsuo 7952 ${ZLIB_LIB}
145 zmatsuo 7456 ${OPENSSL_LIB}
146     #
147     ws2_32
148     dnsapi
149     gdi32
150     comdlg32
151     delayimp
152 zmatsuo 8332 # OpenSSL が使用
153     crypt32.lib # TODO このlibを使用しないパッチを適応したら削除すること
154 zmatsuo 7456 )
155    
156     ### create puttyversion.h
157    
158 zmatsuo 7532 set(PUTTY_ISS "${CMAKE_SOURCE_DIR}/libs/putty/windows/putty.iss")
159     if(NOT EXISTS ${PUTTY_ISS})
160     message(FATAL_ERROR "${PUTTY_ISS} not found")
161     endif()
162    
163 zmatsuo 7456 file(READ "${CMAKE_SOURCE_DIR}/libs/putty/windows/putty.iss" iis)
164    
165     string(REGEX MATCH "VersionInfoTextVersion=([^\n]+)\n" _ ${iis})
166     set(version_str ${CMAKE_MATCH_1})
167     if("${version_str}" STREQUAL "")
168     string(REGEX MATCH "AppVerName=([^\n]+)\n" _ ${iis})
169     set(version_str ${CMAKE_MATCH_1})
170     endif()
171     if("${version_str}" STREQUAL "")
172     set(version_str "unknown")
173     endif()
174     message("putty version=\"${version_str}\"")
175     FILE(
176     WRITE ${CMAKE_CURRENT_BINARY_DIR}/puttyversion.h
177     "#define PUTTYVERSION \"${version_str}\"\n"
178     )
179 zmatsuo 7990
180     install(
181     TARGETS ttxssh
182     RUNTIME
183     DESTINATION .
184     )

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26