* CMakeLists.txt: Add `DISABLE_FORCE_DEBUG_PREFIX' option.

This commit is contained in:
yuri_levchenko 2017-11-09 13:38:26 +02:00 committed by Werner Lemberg
parent 8f5568bfc4
commit af585ad4fe
2 changed files with 7 additions and 1 deletions

View File

@ -331,7 +331,9 @@ if (BUILD_FRAMEWORK)
)
endif ()
set(CMAKE_DEBUG_POSTFIX d)
if (NOT DISABLE_FORCE_DEBUG_POSTFIX)
set(CMAKE_DEBUG_POSTFIX d)
endif()
add_library(freetype
${PUBLIC_HEADERS}

View File

@ -1,3 +1,7 @@
2017-11-10 Yuri Levchenko <yuri_levchenko@boolat.com>
* CMakeLists.txt: Add `DISABLE_FORCE_DEBUG_PREFIX' option.
2017-11-06 Alexei Podtelezhnikov <apodtele@gmail.com>
* src/base/ftobjs.c (FT_Load_Glyph): Relocate condition.