ref: af585ad4fec965fa85f5d61c759f3bc940936de4
parent: 8f5568bfc4fd5fe707f0e41915b57affc1bff0e3
author: yuri_levchenko <[email protected]>
date: Thu Nov 9 08:38:26 EST 2017
* CMakeLists.txt: Add `DISABLE_FORCE_DEBUG_PREFIX' option.
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -331,7 +331,9 @@
)
endif ()
-set(CMAKE_DEBUG_POSTFIX d)
+if (NOT DISABLE_FORCE_DEBUG_POSTFIX)
+ set(CMAKE_DEBUG_POSTFIX d)
+endif()
add_library(freetype
${PUBLIC_HEADERS}
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2017-11-10 Yuri Levchenko <[email protected]>
+
+ * CMakeLists.txt: Add `DISABLE_FORCE_DEBUG_PREFIX' option.
+
2017-11-06 Alexei Podtelezhnikov <[email protected]>
* src/base/ftobjs.c (FT_Load_Glyph): Relocate condition.