cmark

My personal build of CMark ✏️

Commit
a54e12c9e5da809b425cc0f2c01d30953f4ab512
Parent
749e5f1279d300c18d5ae264438d974289dafe2a
Author
John MacFarlane <jgm@berkeley.edu>
Date

Fixed regression in install dest for static library.

Due to a mistake, 0.28.1 installed libcmark.a into include/.

Closes #238.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified src/CMakeLists.txt 2 1 1
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
@@ -130,7 +130,7 @@ install(TARGETS ${PROGRAM} ${CMARK_INSTALL}
   EXPORT cmark
   RUNTIME DESTINATION bin
   LIBRARY DESTINATION ${libdir}
-  ARCHIVE DESTINATION include
+  ARCHIVE DESTINATION ${libdir}
   )
 
 if(CMARK_SHARED OR CMARK_STATIC)