Revision: 7519 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/7519 Author: zmatsuo Date: 2019-03-27 23:54:10 +0900 (Wed, 27 Mar 2019) Log Message: ----------- puttylibでputtyのファイルをフォルダに分類した Modified Paths: -------------- trunk/ttssh2/putty/CMakeLists.txt -------------- next part -------------- Modified: trunk/ttssh2/putty/CMakeLists.txt =================================================================== --- trunk/ttssh2/putty/CMakeLists.txt 2019-03-27 14:53:57 UTC (rev 7518) +++ trunk/ttssh2/putty/CMakeLists.txt 2019-03-27 14:54:10 UTC (rev 7519) @@ -6,14 +6,29 @@ add_definitions("-D_WINDOWS") endif() -set(SRC +set(PUTTY_SRC + ../../libs/putty/putty.h + ../../libs/putty/pageant.h ../../libs/putty/conf.c + ../../libs/putty/misc.h ../../libs/putty/misc.c + ../../libs/putty/tree234.h ../../libs/putty/tree234.c + ../../libs/putty/version.h ../../libs/putty/version.c ../../libs/putty/windows/winmisc.c ../../libs/putty/windows/winpgntc.c + ../../libs/putty/windows/winsecur.h ../../libs/putty/windows/winsecur.c + ) + +source_group( + "putty" + FILES + ${PUTTY_SRC} + ) + +set(SRC libputty.c libputty.h ) @@ -27,4 +42,5 @@ add_library( libputty ${SRC} + ${PUTTY_SRC} )