Browse Subversion Repository
Contents of /trunk/teraterm/CMakeLists.txt
Parent Directory
| Revision Log
Revision 9346 -
( show annotations)
( download)
Tue Aug 10 14:41:49 2021 UTC
(2 years, 8 months ago)
by zmatsuo
File MIME type: text/plain
File size: 1099 byte(s)
layer for unicode フォルダを移動
- layer_for_unicode フォルダを移動
- teraterm/common/layer_for_unicode -> teraterm/layer_for_unicode
- 適宜ファイルも移動
- Windows 95 でロードできなかったプラグインを修正 (cmakeビルド)
- TTProxy.dll
- TTXCheckUpdate.dll
- TTXRecurringCommand.dll
- TTXViewMode.dll
- layer_for_unicode_crt.cpp,h 使用していないので削除
- mingw向けだった
- libmingw/ で対応
| 1 |
|
| 2 |
add_subdirectory(ttpcmn) |
| 3 |
set_target_properties( |
| 4 |
ttpcmn |
| 5 |
PROPERTIES FOLDER teraterm) |
| 6 |
|
| 7 |
add_subdirectory(ttpset) |
| 8 |
set_target_properties( |
| 9 |
ttpset |
| 10 |
PROPERTIES FOLDER teraterm) |
| 11 |
|
| 12 |
add_subdirectory(ttpmacro) |
| 13 |
set_target_properties( |
| 14 |
ttpmacro |
| 15 |
PROPERTIES FOLDER teraterm) |
| 16 |
|
| 17 |
add_subdirectory(ttptek) |
| 18 |
set_target_properties( |
| 19 |
ttptek |
| 20 |
PROPERTIES FOLDER teraterm) |
| 21 |
|
| 22 |
add_subdirectory(teraterm) |
| 23 |
set_target_properties( |
| 24 |
teraterm |
| 25 |
PROPERTIES FOLDER teraterm) |
| 26 |
|
| 27 |
add_subdirectory(keycode) |
| 28 |
set_target_properties( |
| 29 |
keycode |
| 30 |
PROPERTIES FOLDER teraterm) |
| 31 |
set_target_properties( |
| 32 |
keycodeW |
| 33 |
PROPERTIES FOLDER teraterm) |
| 34 |
|
| 35 |
add_subdirectory(common) |
| 36 |
set_target_properties( |
| 37 |
common_static |
| 38 |
PROPERTIES FOLDER teraterm) |
| 39 |
|
| 40 |
if(SUPPORT_OLD_WINDOWS) |
| 41 |
if(CMAKE_SIZEOF_VOID_P EQUAL 4) |
| 42 |
add_subdirectory(layer_for_unicode) |
| 43 |
set_target_properties( |
| 44 |
layer_for_unicode |
| 45 |
PROPERTIES FOLDER teraterm) |
| 46 |
endif() |
| 47 |
|
| 48 |
if(MINGW) |
| 49 |
add_subdirectory(libmingw) |
| 50 |
set_target_properties( |
| 51 |
mingw_msvcrt |
| 52 |
PROPERTIES FOLDER teraterm) |
| 53 |
endif(MINGW) |
| 54 |
endif() |
| 55 |
|
| 56 |
|
|