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 9136 - (hide annotations) (download)
Wed Jan 27 14:40:25 2021 UTC (3 years, 2 months ago) by zmatsuo
File MIME type: text/plain
File size: 4251 byte(s)
MinGW による Windows 95 サポート
1 zmatsuo 9129 set(PACKAGE_NAME "ttxssh")
2 zmatsuo 7456
3 zmatsuo 9129 project(${PACKAGE_NAME})
4 zmatsuo 7456
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 9126 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /DELAYLOAD:user32.dll")
10 zmatsuo 7456 endif()
11    
12 zmatsuo 7952 add_library(
13 zmatsuo 9129 ${PACKAGE_NAME} SHARED
14 zmatsuo 7456 )
15    
16 zmatsuo 7952 target_sources(
17 zmatsuo 9129 ${PACKAGE_NAME}
18 zmatsuo 7952 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 zmatsuo 9129 ${PACKAGE_NAME}
86 zmatsuo 7952 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/servicenames.h
94     ../../teraterm/common/codeconv.h
95     ../../teraterm/common/tipwin.h
96 doda 8445 ../../teraterm/common/layer_for_unicode.h
97     ../../teraterm/common/compat_win.h
98     ../../teraterm/common/dllutil.h
99 zmatsuo 7952 )
100 zmatsuo 7456
101 zmatsuo 7952 source_group(
102     "common"
103     REGULAR_EXPRESSION
104     "teraterm\/common\/")
105    
106 zmatsuo 9129 if(SUPPORT_OLD_WINDOWS)
107     if(MSVC)
108     target_sources(
109     ${PACKAGE_NAME}
110     PRIVATE
111     ../../teraterm/common/compat_w95_vs2005.c
112     )
113     endif()
114 zmatsuo 9136 if(MINGW)
115     target_sources(
116     ${PACKAGE_NAME}
117     PRIVATE
118     ../../teraterm/libmingw/tlssup.c
119     )
120     target_link_libraries(
121     ${PACKAGE_NAME}
122     PRIVATE
123     -Wl,--whole-archive
124     mingw_msvcrt
125     -Wl,--no-whole-archive
126     )
127     endif()
128 zmatsuo 9129 endif(SUPPORT_OLD_WINDOWS)
129    
130 zmatsuo 7952 target_include_directories(
131 zmatsuo 9129 ${PACKAGE_NAME}
132 zmatsuo 7952 PRIVATE
133 zmatsuo 7456 ../../teraterm/teraterm
134     ../../teraterm/common
135     ../matcher
136     ../putty
137     ${OPENSSL_INCLUDE_DIRS}
138     ${ZLIB_INCLUDE_DIRS}
139 zmatsuo 7952 )
140 zmatsuo 7456
141 zmatsuo 7536 set_target_properties(
142 zmatsuo 9129 ${PACKAGE_NAME}
143 zmatsuo 7536 PROPERTIES
144     PREFIX ""
145 zmatsuo 9129 RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/"
146 zmatsuo 7536 )
147    
148 zmatsuo 7952 target_compile_definitions(
149 zmatsuo 9129 ${PACKAGE_NAME}
150 zmatsuo 7952 PRIVATE
151     $<$<CONFIG:Debug>:_CRTDBG_MAP_ALLOC>
152     )
153    
154 zmatsuo 9129 if(MINGW)
155     target_link_options(
156     ttxssh
157     PRIVATE
158     -Wl,-Map=ttxssh.map,-cref
159     )
160     endif()
161    
162 zmatsuo 7456 target_link_libraries(
163 zmatsuo 9129 ${PACKAGE_NAME}
164 zmatsuo 8565 PRIVATE
165     common_static
166 zmatsuo 7456 libputty
167     ttpcmn
168 zmatsuo 7952 ${ZLIB_LIB}
169 zmatsuo 7456 ${OPENSSL_LIB}
170     #
171     ws2_32
172     gdi32
173     comdlg32
174     delayimp
175 doda 8445 comctl32
176 zmatsuo 8332 # OpenSSL が使用
177     crypt32.lib # TODO このlibを使用しないパッチを適応したら削除すること
178 zmatsuo 7456 )
179    
180     ### create puttyversion.h
181    
182 zmatsuo 7532 set(PUTTY_ISS "${CMAKE_SOURCE_DIR}/libs/putty/windows/putty.iss")
183     if(NOT EXISTS ${PUTTY_ISS})
184     message(FATAL_ERROR "${PUTTY_ISS} not found")
185     endif()
186    
187 zmatsuo 7456 file(READ "${CMAKE_SOURCE_DIR}/libs/putty/windows/putty.iss" iis)
188    
189     string(REGEX MATCH "VersionInfoTextVersion=([^\n]+)\n" _ ${iis})
190     set(version_str ${CMAKE_MATCH_1})
191     if("${version_str}" STREQUAL "")
192     string(REGEX MATCH "AppVerName=([^\n]+)\n" _ ${iis})
193     set(version_str ${CMAKE_MATCH_1})
194     endif()
195     if("${version_str}" STREQUAL "")
196     set(version_str "unknown")
197     endif()
198     message("putty version=\"${version_str}\"")
199     FILE(
200     WRITE ${CMAKE_CURRENT_BINARY_DIR}/puttyversion.h
201     "#define PUTTYVERSION \"${version_str}\"\n"
202     )
203 zmatsuo 7990
204     install(
205     TARGETS ttxssh
206     RUNTIME
207     DESTINATION .
208     )
209 zmatsuo 8681
210     ####
211     # ソースツリー内に生成ファイルが存在していたら削除する
212     if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/ttssh2/ttxssh/puttyversion.h")
213     file(REMOVE "${CMAKE_CURRENT_SOURCE_DIR}/ttssh2/ttxssh/puttyversion.h")
214     endif()

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