Develop and Download Open Source Software

Browse Subversion Repository

Contents of /branches/4-stable/TTXKanjiMenu/CMakeLists.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8437 - (show annotations) (download)
Fri Dec 13 03:11:16 2019 UTC (4 years, 3 months ago) by doda
File MIME type: text/plain
File size: 602 byte(s)
Tera Term 4.xx メンテナンス用ブランチを作成

1 project(ttxkanjimenu)
2
3 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/")
4
5 if(USE_UNICODE_API)
6 add_definitions(-DUNICODE -D_UNICODE)
7 endif()
8
9 set(SRC
10 resource.h
11 ttxkanjimenu.c
12 ttxkanjimenu.rc
13 )
14
15 include_directories(
16 ../teraterm/teraterm
17 ../teraterm/common
18 ../libs/openssl/inc32
19 .
20 )
21
22 add_library(
23 ttxkanjimenu SHARED
24 ${SRC}
25 )
26
27 set_target_properties(
28 ttxkanjimenu
29 PROPERTIES
30 PREFIX ""
31 )
32
33 target_link_libraries(
34 ttxkanjimenu
35 ttpcmn
36 #
37 ws2_32
38 )
39
40 install(
41 TARGETS ttxkanjimenu
42 RUNTIME
43 DESTINATION .
44 )

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