Revision: 9637 https://osdn.net/projects/ttssh2/scm/svn/commits/9637 Author: nmaya Date: 2021-12-26 22:27:43 +0900 (Sun, 26 Dec 2021) Log Message: ----------- すでに LibreSSL がビルドされている時に、再びビルドしないように修正 Modified Paths: -------------- branches/libressl_3_4_2/libs/buildlibressl.bat -------------- next part -------------- Modified: branches/libressl_3_4_2/libs/buildlibressl.bat =================================================================== --- branches/libressl_3_4_2/libs/buildlibressl.bat 2021-12-26 13:26:23 UTC (rev 9636) +++ branches/libressl_3_4_2/libs/buildlibressl.bat 2021-12-26 13:27:43 UTC (rev 9637) @@ -3,6 +3,8 @@ cd libressl +if exist "CMakeCache.txt" goto end + cmake -G "Visual Studio 16 2019" -A Win32 perl -e "open(IN,'CMakeCache.txt');while(<IN>){s|=/MD|=/MT|;print $_;}close(IN);" > CMakeCache.txt.tmp move /y CMakeCache.txt.tmp CMakeCache.txt @@ -14,5 +16,6 @@ devenv /build Release LibreSSL.sln /project crypto /projectconfig Release +:end cd .. exit /b 0