cmark

My personal build of CMark ✏️

Commit
5ba0fc09583fd85ef13df60130020f75ae846f94
Parent
a6c0a1e8b3d2f3456972dad61a435684cac52cb5
Author
John MacFarlane <jgm@berkeley.edu>
Date

Set CMARK_DEBUG_NODES for debug builds.

Diffstat

1 file changed, 3 insertions, 0 deletions

Status File Name N° Changes Insertions Deletions
Modified src/CMakeLists.txt 3 3 0
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
@@ -63,6 +63,9 @@ add_compiler_export_flags()
 set_target_properties(${PROGRAM} PROPERTIES
   COMPILE_FLAGS -DCMARK_STATIC_DEFINE)
 
+# Check integrity of node structure when compiled as debug:
+set(CMAKE_C_FLAGS_DEBUG "-DCMARK_DEBUG_NODES")
+
 if (${CMAKE_MAJOR_VERSION} GREATER 1 AND ${CMAKE_MINOR_VERSION} GREATER 8)
   set(CMAKE_C_VISIBILITY_PRESET hidden)
   set(CMAKE_VISIBILITY_INLINES_HIDDEN 1)