Revision: 8415 https://osdn.net/projects/ttssh2/scm/svn/commits/8415 Author: zmatsuo Date: 2019-11-28 00:26:18 +0900 (Thu, 28 Nov 2019) Log Message: ----------- cmake,debug ビルド時、oniguruma の release 版をリンクしていたので修正 Modified Paths: -------------- branches/unicode_buf/libs/lib_oniguruma.cmake -------------- next part -------------- Modified: branches/unicode_buf/libs/lib_oniguruma.cmake =================================================================== --- branches/unicode_buf/libs/lib_oniguruma.cmake 2019-11-27 14:01:43 UTC (rev 8414) +++ branches/unicode_buf/libs/lib_oniguruma.cmake 2019-11-27 15:26:18 UTC (rev 8415) @@ -14,6 +14,8 @@ if(MINGW) set(ONIGURUMA_LIB ${ONIGURUMA_LIBRARY_DIRS}/libonig.a) else() - set(ONIGURUMA_LIB ${ONIGURUMA_LIBRARY_DIRS}/onig.lib) -# set(ONIGURUMA_LIB ${ONIGURUMA_LIBRARY_DIRS}/onigd.lib) + set(ONIGURUMA_LIB + debug ${ONIGURUMA_LIBRARY_DIRS}/onigd.lib + optimized ${ONIGURUMA_LIBRARY_DIRS}/onig.lib + ) endif()